diff options
author | nyamatongwe <nyamatongwe@gmail.com> | 2011-12-02 13:13:08 +1100 |
---|---|---|
committer | nyamatongwe <nyamatongwe@gmail.com> | 2011-12-02 13:13:08 +1100 |
commit | aa574dabf0f7ec336adb86e4ae5e708cae80bc8f (patch) | |
tree | 789e9647e07e81c5281c16e8b30f0098245fbfbd | |
parent | 9fa29412df438983d827dbb2f202344f294ccc7f (diff) | |
download | scintilla-mirror-aa574dabf0f7ec336adb86e4ae5e708cae80bc8f.tar.gz |
Remove dead assignment.
-rw-r--r-- | lexers/LexCoffeeScript.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lexers/LexCoffeeScript.cxx b/lexers/LexCoffeeScript.cxx index 590cef5e1..96d5d2d96 100644 --- a/lexers/LexCoffeeScript.cxx +++ b/lexers/LexCoffeeScript.cxx @@ -469,7 +469,6 @@ static void FoldCoffeeScriptDoc(unsigned int startPos, int length, int, int indentCurrentLevel = indentCurrent & SC_FOLDLEVELNUMBERMASK; // Set up initial loop state - startPos = styler.LineStart(lineCurrent); int prevComment = 0; if (lineCurrent >= 1) prevComment = foldComment && IsCommentLine(lineCurrent - 1, styler); |