diff options
author | nyamatongwe <unknown> | 2005-04-25 12:39:10 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2005-04-25 12:39:10 +0000 |
commit | 9b3abe148d47d5b5ac6c8522b0843bb2a0911967 (patch) | |
tree | 4a29fb826c02df113fdb218ad0dfe838cc23608c | |
parent | c1b7f5da4f77fcd9530bbb03eb3228f6e81f5745 (diff) | |
download | scintilla-mirror-9b3abe148d47d5b5ac6c8522b0843bb2a0911967.tar.gz |
Added SC_MOD_CHANGEFOLD into SC_MODEVENTMASKALL.
-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 36eb51a72..22b47d65f 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -622,7 +622,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SC_MOD_CHANGEMARKER 0x200 #define SC_MOD_BEFOREINSERT 0x400 #define SC_MOD_BEFOREDELETE 0x800 -#define SC_MODEVENTMASKALL 0xF77 +#define SC_MODEVENTMASKALL 0xF7F #define SCEN_CHANGE 768 #define SCEN_SETFOCUS 512 #define SCEN_KILLFOCUS 256 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 32f19d5ac..3d4d203f4 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1673,7 +1673,7 @@ val SC_LASTSTEPINUNDOREDO=0x100 val SC_MOD_CHANGEMARKER=0x200 val SC_MOD_BEFOREINSERT=0x400 val SC_MOD_BEFOREDELETE=0x800 -val SC_MODEVENTMASKALL=0xF77 +val SC_MODEVENTMASKALL=0xF7F # For compatibility, these go through the COMMAND notification rather than NOTIFY # and should have had exactly the same values as the EN_* constants. |