From: Jack Jansen Date: Mon, 9 Oct 1995 23:18:21 +0000 (+0000) Subject: Changed CW signature and fixed .as/.hqx creator/type X-Git-Tag: v1.3~34 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=703e2c153b95cd0b63788036ae803fd1862ac223;p=thirdparty%2FPython%2Fcpython.git Changed CW signature and fixed .as/.hqx creator/type --- diff --git a/Mac/scripts/fixfiletypes.py b/Mac/scripts/fixfiletypes.py index 1d1b1153c55b..455f7e360857 100644 --- a/Mac/scripts/fixfiletypes.py +++ b/Mac/scripts/fixfiletypes.py @@ -14,10 +14,10 @@ import sys list = [ ('.py', 'PYTH', 'TEXT'), ('.pyc', 'PYTH', 'PYC '), - ('.c', 'MPCC', 'TEXT'), - ('.h', 'MPCC', 'TEXT'), - ('.as', 'TEXT', 'ToyS'), - ('.hqx', 'TEXT', 'BnHq') + ('.c', 'CWIE', 'TEXT'), + ('.h', 'CWIE', 'TEXT'), + ('.as', 'ToyS', 'TEXT'), + ('.hqx', 'BnHq', 'TEXT') ] def walktree(name, change):