aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/UniConversion.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2004-06-23 22:57:00 +0000
committernyamatongwe <devnull@localhost>2004-06-23 22:57:00 +0000
commit52e362a702632545e612dedaabedb259404e6104 (patch)
treefd199ab575fc32eea73c8be4e91bc5dd34e93a33 /src/UniConversion.cxx
parent9b55fe1a30e37a9c0de078b24fa6d22834d10dea (diff)
downloadscintilla-mirror-52e362a702632545e612dedaabedb259404e6104.tar.gz
Delete all markers for a particular marker number now deletes
multiple markers on one line.
Diffstat (limited to 'src/UniConversion.cxx')
-rw-r--r--src/UniConversion.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/UniConversion.cxx b/src/UniConversion.cxx
index 15cad6382..363db90f4 100644
--- a/src/UniConversion.cxx
+++ b/src/UniConversion.cxx
@@ -16,7 +16,7 @@ unsigned int UTF8Length(const wchar_t *uptr, unsigned int tlen) {
if (uch < 0x80)
len++;
else if (uch < 0x800)
- len+=2;
+ len += 2;
else
len +=3;
}