diff options
Diffstat (limited to 'pygments/lexers/modula2.py')
-rw-r--r-- | pygments/lexers/modula2.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pygments/lexers/modula2.py b/pygments/lexers/modula2.py index b95bfaec..4794ebce 100644 --- a/pygments/lexers/modula2.py +++ b/pygments/lexers/modula2.py @@ -1547,15 +1547,15 @@ class Modula2Lexer(RegexLexer): # substitute lexemes when in Algol mode if self.algol_publication_mode: if value == '#': - value = u'≠' + value = '≠' elif value == '<=': - value = u'≤' + value = '≤' elif value == '>=': - value = u'≥' + value = '≥' elif value == '==': - value = u'≡' + value = '≡' elif value == '*.': - value = u'•' + value = '•' # return result yield index, token, value |