Changeset 11767
- Timestamp:
- 2019-10-23T11:58:19+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
utils/developer/fortran.py
r11766 r11767 89 89 (r'(::)', Keyword.Declaration), 90 90 91 (r'[()\[\],:&%;.]', Punctuation),92 91 # Intrinsics 93 92 (words(( … … 148 147 # Comparing Operators 149 148 (r'\.(eq|ne|lt|le|gt|ge|not|and|or|eqv|neqv)\.', Operator.Word), 150 ], 151 149 150 # Punctuation 151 (r'[()\[\],:&%;.]', Punctuation), 152 ], 152 153 'strings': [ 153 154 (r'(?s)"(\\\\|\\[0-7]+|\\.|[^"\\])*"', String.Double),
Note: See TracChangeset
for help on using the changeset viewer.