diff options
Diffstat (limited to 'Mac/scripts/mkestrres.py')
| -rw-r--r-- | Mac/scripts/mkestrres.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Mac/scripts/mkestrres.py b/Mac/scripts/mkestrres.py index c5ff6d3..bf56e43 100644 --- a/Mac/scripts/mkestrres.py +++ b/Mac/scripts/mkestrres.py @@ -123,6 +123,12 @@ def main(): parse_errors_h(fp, dict) fp.close() + fss, ok = macfs.PromptGetFile("Where is mkestrres-MacErrors.h?") + if not ok: return + fp = open(fss.as_pathname()) + parse_errors_h(fp, dict) + fp.close() + if not dict: return |
