diff options
author | nyamatongwe <devnull@localhost> | 2004-04-27 22:13:00 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2004-04-27 22:13:00 +0000 |
commit | 8680d7580a9a94f6cd46b2fc21f9d81851a0b3d8 (patch) | |
tree | 211ca7e06ffa83b909aba98c601e0e8907c963b9 /src/Document.cxx | |
parent | 816681de6b0d5ed45f6886dfaf18f35ef7c7d191 (diff) | |
download | scintilla-mirror-8680d7580a9a94f6cd46b2fc21f9d81851a0b3d8.tar.gz |
Continuation Marker feature from Hans Eckardt.
Diffstat (limited to 'src/Document.cxx')
-rw-r--r-- | src/Document.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index 25cb0de9f..046a72683 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -57,6 +57,7 @@ Document::Document() { enteredReadOnlyCount = 0; tabInChars = 8; indentInChars = 0; + actualIndentInChars = 8; useTabs = true; tabIndents = true; backspaceUnindents = false; |