Minor clarficiations in the dialogs about which errno file is wanted when (I had also forgotten:-).
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 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)