diff --git a/parser/parser-fplo/FploInputParser.py b/parser/parser-fplo/FploInputParser.py index d01915ab33519580617d6a8ba2a72e560c789447..46f3a67695781107731f0bba91b79cf95b1403d3 100755 --- a/parser/parser-fplo/FploInputParser.py +++ b/parser/parser-fplo/FploInputParser.py @@ -109,7 +109,7 @@ class FploInputParser(object): # match literals m = cRE_literal.match(line, pos_in_line) if m is not None: - self.annotate(m.group(), ANSI.BG_YELLOW) + self.annotate(m.group(), ANSI.FG_MAGENTA) return m.end() # match operators m = cRE_operator.match(line, pos_in_line)