diff -r 9986ec0e559a -r 10516539f238 QScintilla/Lexers/LexerTeX.py --- a/QScintilla/Lexers/LexerTeX.py Tue Oct 15 22:03:54 2013 +0200 +++ b/QScintilla/Lexers/LexerTeX.py Fri Oct 18 23:00:41 2013 +0200 @@ -37,7 +37,8 @@ try: self.setFoldCompact(Preferences.getEditor("AllFoldCompact")) self.setFoldComments(Preferences.getEditor("TexFoldComment")) - self.setProcessComments(Preferences.getEditor("TexProcessComments")) + self.setProcessComments( + Preferences.getEditor("TexProcessComments")) self.setProcessIf(Preferences.getEditor("TexProcessIf")) except AttributeError: pass @@ -46,6 +47,7 @@ """ Public method to check, if a style is a comment style. + @param style style to check (integer) @return flag indicating a comment style (boolean) """ return False @@ -54,6 +56,7 @@ """ Public method to check, if a style is a string style. + @param style style to check (integer) @return flag indicating a string style (boolean) """ return style in [QsciLexerTeX.Text]