diff options
author | nyamatongwe <devnull@localhost> | 2009-01-01 01:36:37 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-01-01 01:36:37 +0000 |
commit | 2f6cb0e25c35daf753a07b661482b4be81a6222c (patch) | |
tree | e3ce4c3d8bc377d3c94132e26c9a7cae538e6132 /src/LexTADS3.cxx | |
parent | 59ffc74390ea57ec1090d70b947c430867860c41 (diff) | |
download | scintilla-mirror-2f6cb0e25c35daf753a07b661482b4be81a6222c.tar.gz |
Updates to avoid warnings from GCC 4.3. Should not change behaviour.
Diffstat (limited to 'src/LexTADS3.cxx')
-rw-r--r-- | src/LexTADS3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexTADS3.cxx b/src/LexTADS3.cxx index 7cc85f1f9..ee16a0ac0 100644 --- a/src/LexTADS3.cxx +++ b/src/LexTADS3.cxx @@ -679,7 +679,7 @@ static const int T3_EXPECTINGPUNCTUATION = 1 << 14; static inline bool IsStringTransition(int s1, int s2) { return s1 != s2 && (s1 == SCE_T3_S_STRING || s1 == SCE_T3_X_STRING - || s1 == SCE_T3_D_STRING && s2 != SCE_T3_X_DEFAULT) + || (s1 == SCE_T3_D_STRING && s2 != SCE_T3_X_DEFAULT)) && s2 != SCE_T3_LIB_DIRECTIVE && s2 != SCE_T3_MSG_PARAM && s2 != SCE_T3_HTML_TAG |