diff options
| author | Neil <nyamatongwe@gmail.com> | 2017-08-25 17:36:43 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2017-08-25 17:36:43 +1000 |
| commit | 7c347102a548d811cd4cb31fabf3427f31516a53 (patch) | |
| tree | 6e48ad30f1ca1d4aeee76fa8b544fa2d9c20cc68 /include/Scintilla.iface | |
| parent | 06d3f7dd781d5a82f8141cb11279df64d9fd4880 (diff) | |
| download | scintilla-mirror-7c347102a548d811cd4cb31fabf3427f31516a53.tar.gz | |
Backport: Moved *StyleBits* APIs into deprecated category.
Backport of changeset 6379:b44bb3627bbd.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 233278145..cefe66e21 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -702,14 +702,6 @@ set void SetWhitespaceSize=2086(int size,) # Get the size of the dots used to mark space characters. get int GetWhitespaceSize=2087(,) -# Divide each styling byte into lexical class bits (default: 5) and indicator -# bits (default: 3). If a lexer requires more than 32 lexical states, then this -# is used to expand the possible states. -set void SetStyleBits=2090(int bits,) - -# Retrieve number of bits in style bytes used to hold the lexical state. -get int GetStyleBits=2091(,) - # Used to hold extra styling information for each line. set void SetLineState=2092(int line, int state) @@ -2645,9 +2637,6 @@ get int GetPropertyExpanded=4009(string key, stringresult value) # interpreted as an int AFTER any "$()" variable replacement. get int GetPropertyInt=4010(string key, int defaultValue) -# Retrieve the number of bits the current lexer needs for styling. -get int GetStyleBitsNeeded=4011(,) - # Retrieve the name of the lexer. # Return the length of the text. # Result is NUL-terminated. @@ -4883,6 +4872,17 @@ cat Provisional cat Deprecated +# Divide each styling byte into lexical class bits (default: 5) and indicator +# bits (default: 3). If a lexer requires more than 32 lexical states, then this +# is used to expand the possible states. +set void SetStyleBits=2090(int bits,) + +# Retrieve number of bits in style bytes used to hold the lexical state. +get int GetStyleBits=2091(,) + +# Retrieve the number of bits the current lexer needs for styling. +get int GetStyleBitsNeeded=4011(,) + # Deprecated in 3.5.5 # Always interpret keyboard input as Unicode |
