diff options
| author | nyamatongwe <devnull@localhost> | 2008-12-23 23:52:01 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2008-12-23 23:52:01 +0000 | 
| commit | 53debf7f31f826fa086967b530c8775a75aa610f (patch) | |
| tree | f69feb0f6a4567d2881a17ee4734906f4a626d2c /src/LexPerl.cxx | |
| parent | 261e4529ceb56bd8a0ab00c5505174968f0ff245 (diff) | |
| download | scintilla-mirror-53debf7f31f826fa086967b530c8775a75aa610f.tar.gz | |
Fixes for GCC 4.3 warnings. The Pascal change fixes behaviour.
Diffstat (limited to 'src/LexPerl.cxx')
| -rw-r--r-- | src/LexPerl.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/LexPerl.cxx b/src/LexPerl.cxx index f57f73c29..4b7c9878a 100644 --- a/src/LexPerl.cxx +++ b/src/LexPerl.cxx @@ -569,7 +569,7 @@ static void ColourisePerlDoc(unsigned int startPos, int length, int initStyle,  						sc.Forward(ws_skip + 1);  						HereDoc.Quote = delim_ch;  						HereDoc.Quoted = true; -					} else if (ws_skip == 0 && setNonHereDoc.Contains(sc.chNext) +					} else if ((ws_skip == 0 && setNonHereDoc.Contains(sc.chNext))  							   || ws_skip > 0) {  						// left shift << or <<= operator cases  						// restore position if operator | 
