diff options
author | nyamatongwe <unknown> | 2007-01-26 01:23:36 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-01-26 01:23:36 +0000 |
commit | 12ca72d0c1fb2b4db114783019517dcde3ef426c (patch) | |
tree | 9e35c5645583a75f9c61af3ac5125e2d747bfe28 /src/Document.h | |
parent | d29a135b12ff4f664bca3e18777dbdfce74c2551 (diff) | |
download | scintilla-mirror-12ca72d0c1fb2b4db114783019517dcde3ef426c.tar.gz |
Separated reentrance check into text modification and styling modification flags to allow
styling to be performed within a text modification
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h index aaa19e493..829ecbd81 100644 --- a/src/Document.h +++ b/src/Document.h @@ -97,7 +97,8 @@ private: char stylingMask; int endStyled; int styleClock; - int enteredCount; + int enteredModification; + int enteredStyling; int enteredReadOnlyCount; WatcherWithUserData *watchers; |