diff options
author | nyamatongwe <devnull@localhost> | 2007-06-25 01:46:25 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-06-25 01:46:25 +0000 |
commit | fc23a10d8292042571f6a292d6fc4bff73f1d0ab (patch) | |
tree | 059f2d45f3344ce332ed27a5b75138633de22bc8 /include | |
parent | 48974cb7802717896ed7560bf0520cf942b8c245 (diff) | |
download | scintilla-mirror-fc23a10d8292042571f6a292d6fc4bff73f1d0ab.tar.gz |
Allow use of all 8 bits for lexical styles and LexHTML set to use 8 buts.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 2 | ||||
-rw-r--r-- | include/Scintilla.iface | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index c50528b72..450865cc1 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -159,7 +159,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define STYLE_INDENTGUIDE 37 #define STYLE_CALLTIP 38 #define STYLE_LASTPREDEFINED 39 -#define STYLE_MAX 127 +#define STYLE_MAX 255 #define SC_CHARSET_ANSI 0 #define SC_CHARSET_DEFAULT 1 #define SC_CHARSET_BALTIC 186 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index b89236b71..b947301ea 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -360,7 +360,7 @@ val STYLE_CONTROLCHAR=36 val STYLE_INDENTGUIDE=37 val STYLE_CALLTIP=38 val STYLE_LASTPREDEFINED=39 -val STYLE_MAX=127 +val STYLE_MAX=255 # Character set identifiers are used in StyleSetCharacterSet. # The values are the same as the Windows *_CHARSET values. |