diff options
Diffstat (limited to 'tools/postprocess/postprocess.py')
-rw-r--r-- | tools/postprocess/postprocess.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/postprocess/postprocess.py b/tools/postprocess/postprocess.py index ab2d912..c45ec16 100644 --- a/tools/postprocess/postprocess.py +++ b/tools/postprocess/postprocess.py @@ -34,12 +34,12 @@ import struct # Substitutions substitutions = ( - ('<', '____esc_lt'), - ('>', '____esc_gt'), - ('@', '____esc_at'), - ('\\', '____esc_bs'), - (',', '____esc_cm'), - ('-', '____esc_hy') + ('<', '$0'), + ('>', '$1'), + ('@', '$2'), + ('\\', '$3'), + (',', '$4'), + ('-', '$5') ) def format(symbol): |