diff options
author | nyamatongwe <unknown> | 2007-07-15 22:11:01 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-07-15 22:11:01 +0000 |
commit | 6220f81bfa28f9eaac1cee954718b8e77b0504a3 (patch) | |
tree | 36f2544f7a4a88ab01577d23f7a8955cb62ae708 | |
parent | 7b9a7c3a58680e1a07f42b2ea8a6392a386e1dc6 (diff) | |
download | scintilla-mirror-6220f81bfa28f9eaac1cee954718b8e77b0504a3.tar.gz |
Fixed bug #1754343 double test against SCI_CHARLEFTEXTEND.
-rw-r--r-- | src/ScintillaBase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index f8571e962..9cb0b4f1e 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -183,7 +183,7 @@ int ScintillaBase::KeyCommand(unsigned int iMessage) { (iMessage != SCI_CHARLEFT) && (iMessage != SCI_CHARLEFTEXTEND) && (iMessage != SCI_CHARRIGHT) && - (iMessage != SCI_CHARLEFTEXTEND) && + (iMessage != SCI_CHARRIGHTEXTEND) && (iMessage != SCI_EDITTOGGLEOVERTYPE) && (iMessage != SCI_DELETEBACK) && (iMessage != SCI_DELETEBACKNOTLINE) |