diff options
author | nyamatongwe <devnull@localhost> | 2002-10-02 04:41:30 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-10-02 04:41:30 +0000 |
commit | 1b7a4d95458686fcd208cedf12882b665b5bdbcd (patch) | |
tree | acdd6e2db1ed40e7e7883f30ed2fff6d78fa50b0 | |
parent | 878b9db415df530b35ae66054228bfbb23a473a3 (diff) | |
download | scintilla-mirror-1b7a4d95458686fcd208cedf12882b665b5bdbcd.tar.gz |
Fixed bad colour reading from XPM.
-rw-r--r-- | src/LineMarker.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/LineMarker.cxx b/src/LineMarker.cxx index b2a49991d..16be7436a 100644 --- a/src/LineMarker.cxx +++ b/src/LineMarker.cxx @@ -66,7 +66,6 @@ void XPM::Init(const char * const *linesForm) { codes[c] = colourDef[0]; colourDef += 4; if (*colourDef == '#') { - colourDef++; colours[c].desired = ColourFromString(colourDef); } else { colours[c].desired = ColourDesired(0xff, 0xff, 0xff); |