| commit | 117dbdf4b46c9859d787fbd97f16133bf487f264 | [log] [tgz] |
|---|---|---|
| author | Jack Jansen <jack.jansen@cwi.nl> | Mon Apr 22 11:44:26 2002 +0000 |
| committer | Jack Jansen <jack.jansen@cwi.nl> | Mon Apr 22 11:44:26 2002 +0000 |
| tree | 082eed1063e34584cf0c64515bcd8acc56a08189 | |
| parent | 44c4c6dbd6044291ca139edd4f0add84d784df04 [diff] [blame] |
Added an optional file with MacErrors.h extensions: IC errors aren't in there. Bugfix candidate.
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 @@ 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