aboutsummaryrefslogtreecommitdiff
path: root/core/.buffer.luadoc
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2017-11-18 21:45:20 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2017-11-18 21:45:20 -0500
commit9526d491e7c01e74bbcec0fe25fb13384f9036c9 (patch)
treeae1d15c7659424e55a60e896beffeb4a4b2d3879 /core/.buffer.luadoc
parenta8a0f88ae32effeb328b71903b0976129065c360 (diff)
downloadtextadept-9526d491e7c01e74bbcec0fe25fb13384f9036c9.tar.gz
textadept-9526d491e7c01e74bbcec0fe25fb13384f9036c9.zip
Enforce extra argument to `buffer:brace_match()` introduced in Scintilla 3.7.0.
Diffstat (limited to 'core/.buffer.luadoc')
-rw-r--r--core/.buffer.luadoc3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/.buffer.luadoc b/core/.buffer.luadoc
index 49e4309b..a028beb9 100644
--- a/core/.buffer.luadoc
+++ b/core/.buffer.luadoc
@@ -1437,8 +1437,9 @@ function brace_highlight_indicator(buffer, use_indicator, indicator) end
-- '>' and must have the same style.
-- @param buffer A buffer.
-- @param pos The position of the brace in *buffer* to match.
+-- @param max_re_style Must be `0`. Reserved for expansion.
-- @return number
-function brace_match(buffer, pos) end
+function brace_match(buffer, pos, max_re_style) end
---
-- Returns whether or not a call tip is visible.