diff options
author | nyamatongwe <devnull@localhost> | 2001-01-04 11:06:50 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-01-04 11:06:50 +0000 |
commit | 88ddb5a91646da0bcb42219e246da86c8b70dc77 (patch) | |
tree | fe61c225dda8864b34f691325a2e5885f50b3fa6 /src/Document.cxx | |
parent | 5601461babe4904b474e5fe3320825f296a63aba (diff) | |
download | scintilla-mirror-88ddb5a91646da0bcb42219e246da86c8b70dc77.tar.gz |
Fixed some warnings.
Diffstat (limited to 'src/Document.cxx')
-rw-r--r-- | src/Document.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index 69cf2a438..3e017e25e 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -971,7 +971,6 @@ int Document::WordPartLeft(int pos) { while (pos > 0 && IsWordPartSeparator(cb.CharAt(pos))) { --pos; } - startChar = cb.CharAt(pos); } if (pos > 0) { startChar = cb.CharAt(pos); |