From 703e2c153b95cd0b63788036ae803fd1862ac223 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Mon, 9 Oct 1995 23:18:21 +0000 Subject: [PATCH] Changed CW signature and fixed .as/.hqx creator/type --- Mac/scripts/fixfiletypes.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mac/scripts/fixfiletypes.py b/Mac/scripts/fixfiletypes.py index 1d1b1153c55..455f7e36085 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):