diff options
author | nyamatongwe <devnull@localhost> | 2005-12-09 22:22:10 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2005-12-09 22:22:10 +0000 |
commit | 2a05c05e309b30d2163edc82de8df96ecdb64ac7 (patch) | |
tree | e6c97c5de9d065a204e6d685c0794f8d889b5cdf /src/Document.h | |
parent | d29654ff1f4e3ed5e74383b690d3988aadc1ed07 (diff) | |
download | scintilla-mirror-2a05c05e309b30d2163edc82de8df96ecdb64ac7.tar.gz |
Fixed bug #1373855 by taking DBCS into account when matching braces.
Moved brace matching from Editor into Document.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Document.h b/src/Document.h index 5a85abe5d..3c0273d0f 100644 --- a/src/Document.h +++ b/src/Document.h @@ -234,6 +234,7 @@ public: int ParaUp(int pos); int ParaDown(int pos); int IndentSize() { return actualIndentInChars; } + int BraceMatch(int position, int maxReStyle); private: void CheckReadOnly(); |