diff options
author | Paulo Moura <pmoura@logtalk.org> | 2014-09-11 11:12:35 +0000 |
---|---|---|
committer | Paulo Moura <pmoura@logtalk.org> | 2014-09-11 11:12:35 +0000 |
commit | 3c822143b6576d4a8b73e6a09ea3125755dcf24c (patch) | |
tree | a153b26c7687d6084951d6a12fdff3805eeb51af | |
parent | 9167cbf2c679c5d52ac78d7d01ead56c42e4ce0b (diff) | |
download | pygments-3c822143b6576d4a8b73e6a09ea3125755dcf24c.tar.gz |
Fix harmless comment layout
-rw-r--r-- | pygments/lexers/other.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py index 66e70a29..e70f194b 100644 --- a/pygments/lexers/other.py +++ b/pygments/lexers/other.py @@ -642,7 +642,7 @@ class LogtalkLexer(RegexLexer): ], 'directive': [ - # Conditional compilation directives + # Conditional compilation directives (r'(el)?if(?=[(])', Keyword, 'root'), (r'(e(lse|ndif))[.]', Keyword, 'root'), # Entity directives |