diff options
author | nyamatongwe <unknown> | 2005-05-04 13:15:44 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2005-05-04 13:15:44 +0000 |
commit | e0c7127b40f6db727da73aef7a5499e656aa3177 (patch) | |
tree | e7400f601ff821e3cc1879869b623b473fdc0a9f | |
parent | 7a48e592e7cdc7b751178ffec475ff3c6acdd23c (diff) | |
download | scintilla-mirror-e0c7127b40f6db727da73aef7a5499e656aa3177.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(); |