diff options
author | nyamatongwe <devnull@localhost> | 2000-08-22 03:13:47 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-08-22 03:13:47 +0000 |
commit | f239a59953d1e3f1b3dc8c7f8de92aebc4cfb8a2 (patch) | |
tree | 179484a3ebba2fe05ba2ae635aa43f4935a6e901 /src/ScintillaBase.cxx | |
parent | 89ef99c7fdf9312d4c2f8b9e822a2060dc344ed7 (diff) | |
download | scintilla-mirror-f239a59953d1e3f1b3dc8c7f8de92aebc4cfb8a2.tar.gz |
Added SCE_H_VALUE class for HTML for unquoted values.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index 70e890e1a..4f182850a 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -62,7 +62,6 @@ void ScintillaBase::AddCharUTF(char *s, unsigned int len) { bool acActiveBeforeCharAdded = ac.Active(); if (!acActiveBeforeCharAdded || !ac.IsFillUpChar(*s)) Editor::AddCharUTF(s, len); - Editor::AddCharUTF(s, len); if (acActiveBeforeCharAdded) AutoCompleteChanged(s[0]); } |