diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-01-01 22:57:59 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-01-01 22:57:59 (GMT) |
commit | c158bb2293cacc0526e88031dbfbdbd266ab990d (patch) | |
tree | 9f9f76b826c578e7ea8bd05a94b1e675b3979bf2 /Mac | |
parent | 07d69f60bd3b77d548056ddd7ade2c4c294b4559 (diff) | |
download | cpython-c158bb2293cacc0526e88031dbfbdbd266ab990d.zip cpython-c158bb2293cacc0526e88031dbfbdbd266ab990d.tar.gz cpython-c158bb2293cacc0526e88031dbfbdbd266ab990d.tar.bz2 |
Minor clarficiations in the dialogs about which errno file is wanted when (I had also forgotten:-).
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/scripts/mkestrres.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/scripts/mkestrres.py b/Mac/scripts/mkestrres.py index a1a6049..c19e6d0 100644 --- a/Mac/scripts/mkestrres.py +++ b/Mac/scripts/mkestrres.py @@ -102,13 +102,13 @@ def parse_errors_h(fp, dict): def main(): dict = {} - fss, ok = macfs.PromptGetFile("Where is errno.h?") + fss, ok = macfs.PromptGetFile("Where is GUSI sys/errno.h?") if not ok: return fp = open(fss.as_pathname()) parse_errno_h(fp, dict) fp.close() - fss, ok = macfs.PromptGetFile("Select 2nd errno.h or cancel") + fss, ok = macfs.PromptGetFile("Select 2nd errno.h (MSL) or cancel") if not ok: return fp = open(fss.as_pathname()) parse_errno_h(fp, dict) |