Minor clarficiations in the dialogs about which errno file is wanted when (I had also forgotten:-).

This commit is contained in:
Jack Jansen 2001-01-01 22:57:59 +00:00
parent 07d69f60bd
commit c158bb2293

View file

@ -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)