aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/AutoComplete.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-07-12 03:39:49 +0000
committernyamatongwe <unknown>2000-07-12 03:39:49 +0000
commitbefcf67e8df6f8b80df05efa8f77ec81fc3ea45b (patch)
treee9082783244851d58fffe9faae8af129f92b0409 /src/AutoComplete.cxx
parent372b4cbe4a43236de333d2b0dda964973b886bc8 (diff)
downloadscintilla-mirror-befcf67e8df6f8b80df05efa8f77ec81fc3ea45b.tar.gz
Autocompletion cancel at start position available to API.
Inverted default value to be compatible with older code.
Diffstat (limited to 'src/AutoComplete.cxx')
-rw-r--r--src/AutoComplete.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AutoComplete.cxx b/src/AutoComplete.cxx
index 00a3a75fc..d45ab27a6 100644
--- a/src/AutoComplete.cxx
+++ b/src/AutoComplete.cxx
@@ -16,7 +16,7 @@ AutoComplete::AutoComplete() {
posStart = 0;
strcpy(stopChars, "");
separator = ' ';
- cancelAtStartPos = false;
+ cancelAtStartPos = true;
}
AutoComplete::~AutoComplete() {