Some little corrections to the Fortran lexers.

Wed, 25 Jan 2017 11:17:04 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 25 Jan 2017 11:17:04 +0100
changeset 5442
43d42a54cf50
parent 5441
cd5343be7d72
child 5443
3ef014765648

Some little corrections to the Fortran lexers.

QScintilla/Lexers/LexerFortran.py file | annotate | diff | comparison | revisions
QScintilla/Lexers/LexerFortran77.py file | annotate | diff | comparison | revisions
--- a/QScintilla/Lexers/LexerFortran.py	Mon Jan 23 17:53:07 2017 +0100
+++ b/QScintilla/Lexers/LexerFortran.py	Wed Jan 25 11:17:04 2017 +0100
@@ -28,7 +28,7 @@
         QsciLexerFortran.__init__(self, parent)
         Lexer.__init__(self)
         
-        self.commentString = "!"
+        self.commentString = "c "
     
     def initProperties(self):
         """
--- a/QScintilla/Lexers/LexerFortran77.py	Mon Jan 23 17:53:07 2017 +0100
+++ b/QScintilla/Lexers/LexerFortran77.py	Wed Jan 25 11:17:04 2017 +0100
@@ -28,7 +28,7 @@
         QsciLexerFortran77.__init__(self, parent)
         Lexer.__init__(self)
         
-        self.commentString = "c"
+        self.commentString = "c "
     
     def initProperties(self):
         """

eric ide

mercurial