diff options
| author | nyamatongwe <devnull@localhost> | 2007-07-15 22:11:01 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2007-07-15 22:11:01 +0000 | 
| commit | 308e8032dea816e28137cefce7599672bea2d339 (patch) | |
| tree | 36f2544f7a4a88ab01577d23f7a8955cb62ae708 /src | |
| parent | dec51e8e708a4c0054107da5bf7f43e169fc33ec (diff) | |
| download | scintilla-mirror-308e8032dea816e28137cefce7599672bea2d339.tar.gz | |
Fixed bug #1754343 double test against SCI_CHARLEFTEXTEND.
Diffstat (limited to 'src')
| -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) | 
