diff options
author | nyamatongwe <nyamatongwe@gmail.com> | 2012-02-25 10:57:37 +1100 |
---|---|---|
committer | nyamatongwe <nyamatongwe@gmail.com> | 2012-02-25 10:57:37 +1100 |
commit | 393831bfa0fdcc5db87841ea8d429c9e8275285d (patch) | |
tree | a6aafe4716f2e67d3b8db30b7b388372fff98b09 /lexers/LexPerl.cxx | |
parent | 3b553666696950d50af766a3e9ea744327b80304 (diff) | |
download | scintilla-mirror-393831bfa0fdcc5db87841ea8d429c9e8275285d.tar.gz |
Fix dead code warnings from Xcode Analyze.
Diffstat (limited to 'lexers/LexPerl.cxx')
-rw-r--r-- | lexers/LexPerl.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lexers/LexPerl.cxx b/lexers/LexPerl.cxx index 87a06d43e..9cc26b097 100644 --- a/lexers/LexPerl.cxx +++ b/lexers/LexPerl.cxx @@ -945,8 +945,7 @@ void SCI_METHOD LexerPerl::Lex(unsigned int startPos, int length, int initStyle, sc.SetState(SCE_PL_POD); } else fw = fw2; - } else - pod = SCE_PL_POD; + } } else { if (pod == SCE_PL_POD_VERB // still part of current paragraph && (styler.GetLineState(ln - 1) == SCE_PL_POD)) { |