diff options
author | nyamatongwe <devnull@localhost> | 2005-05-04 13:15:44 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2005-05-04 13:15:44 +0000 |
commit | f21a73ceb4a162722ecc9c50adb49bbcbdcbdf21 (patch) | |
tree | e7400f601ff821e3cc1879869b623b473fdc0a9f | |
parent | f3347d829ffff834752ab4f4cf1e990ab45e42a8 (diff) | |
download | scintilla-mirror-f21a73ceb4a162722ecc9c50adb49bbcbdcbdf21.tar.gz |
Avoid warning.
-rw-r--r-- | src/LexSmalltalk.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/LexSmalltalk.cxx b/src/LexSmalltalk.cxx index 159390041..8fc450ec9 100644 --- a/src/LexSmalltalk.cxx +++ b/src/LexSmalltalk.cxx @@ -246,7 +246,6 @@ static void handleLetter(StyleContext& sc) ident[0] = static_cast<char>(sc.ch); il = 1; - doubleColonPresent; while (isAlphaNumeric(sc.chNext)) { ident[il++] = static_cast<char>(sc.chNext); sc.Forward(); |