diff options
author | nyamatongwe <devnull@localhost> | 2007-01-26 01:23:36 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-01-26 01:23:36 +0000 |
commit | 2dfd3066c0febc42add7fd8c9f22993db014e725 (patch) | |
tree | 9e35c5645583a75f9c61af3ac5125e2d747bfe28 /src/Document.h | |
parent | ce33c9e6add556342a071b571de3226110e4ac01 (diff) | |
download | scintilla-mirror-2dfd3066c0febc42add7fd8c9f22993db014e725.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; |