aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2018-03-24 10:00:45 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2018-03-24 10:00:45 -0400
commitf05a5b7a20a9df50fc8116324fe078ca473343d6 (patch)
tree8d9baf4f499433897090bbfd2f6073eeebef2a77 /scripts
parent215797f4739bb151317b0c4eb7899d346a35e3de (diff)
Updated to pre-release version of Scintilla 3.8.0.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen_iface.lua9
1 files changed, 5 insertions, 4 deletions
diff --git a/scripts/gen_iface.lua b/scripts/gen_iface.lua
index 7c9acb9d..d7294b1a 100755
--- a/scripts/gen_iface.lua
+++ b/scripts/gen_iface.lua
@@ -12,10 +12,11 @@ local types = {
}
local ignores = { -- constants to ignore
'^INDIC[012S]_', '^INVALID_POSITION', '^KEYWORDSET_MAX', '^SC_AC_',
- '^SC_CACHE_', '^SC_CHARSET_', '^SC_EFF_', '^SC_FONT_SIZE_MULTIPLIER',
- '^SC_INDIC', '^SC_LINE_END_TYPE_', '^SC_PHASES_', '^SC_POPUP_', '^SC_PRINT_',
- '^SC_STATUS_', '^SC_TECHNOLOGY_', '^SC_TYPE_', '^SC_WEIGHT_', '^SCE_',
- '^SCEN_', '^SCFIND_POSIX', '^SCI_', '^SCK_', '^SCLEX_', '^UNDO_MAY_COALESCE'
+ '^SC_DOCUMENTOPTION_', '^SC_CACHE_', '^SC_CHARSET_', '^SC_EFF_',
+ '^SC_FONT_SIZE_MULTIPLIER', '^SC_INDIC', '^SC_LINE_END_TYPE_', '^SC_PHASES_',
+ '^SC_POPUP_', '^SC_PRINT_', '^SC_STATUS_', '^SC_TECHNOLOGY_', '^SC_TYPE_',
+ '^SC_WEIGHT_', '^SCE_', '^SCEN_', '^SCFIND_POSIX', '^SCI_', '^SCK_',
+ '^SCLEX_', '^UNDO_MAY_COALESCE'
}
local changed_setter = {} -- holds properties changed to setter functions
local string_format, table_unpack = string.format, table.unpack