summaryrefslogtreecommitdiff
path: root/py/makecompresseddata.py
diff options
context:
space:
mode:
Diffstat (limited to 'py/makecompresseddata.py')
-rw-r--r--py/makecompresseddata.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/py/makecompresseddata.py b/py/makecompresseddata.py
index 26d6703a9..28223a6d9 100644
--- a/py/makecompresseddata.py
+++ b/py/makecompresseddata.py
@@ -168,7 +168,11 @@ def main(collected_path, fn):
# Print the replacements.
for uncomp, comp in error_strings.items():
- print('MP_MATCH_COMPRESSED("{}", "\\{:03o}{}")'.format(uncomp, _COMPRESSED_MARKER, comp))
+ if uncomp == comp:
+ prefix = ""
+ else:
+ prefix = "\\{:03o}".format(_COMPRESSED_MARKER)
+ print('MP_MATCH_COMPRESSED("{}", "{}{}")'.format(uncomp, prefix, comp))
# Used to calculate the "true" length of the (escaped) compressed strings.
def unescape(s):