summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMax <mparisi@stevens.edu>2020-09-30 11:06:30 -0400
committerMax <mparisi@stevens.edu>2020-09-30 11:06:30 -0400
commitfa4ee0a512a03120599bd41ccb2987a93fb4224d (patch)
tree763ba0cc81604761870db7eeb0e6c06137969949 /tools
parent89d7e06a792a5859b3d284257612820feb2980a2 (diff)
add '*' escape sequence to postprocess.py, and split the rest of MetroTRK/
Diffstat (limited to 'tools')
-rw-r--r--tools/postprocess/postprocess.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/postprocess/postprocess.py b/tools/postprocess/postprocess.py
index c45ec16..3c757e4 100644
--- a/tools/postprocess/postprocess.py
+++ b/tools/postprocess/postprocess.py
@@ -22,6 +22,7 @@ BANNER = """
# 3: \\
# 4: ,
# 5: -
+# 6: *
#
# This option is enabled with -fsymbol-fixup, and disabled by default with -fno-symbol-fixup
#
@@ -39,7 +40,8 @@ substitutions = (
('@', '$2'),
('\\', '$3'),
(',', '$4'),
- ('-', '$5')
+ ('-', '$5'),
+ ('*', '$6')
)
def format(symbol):