summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2002-01-22 23:25:12 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2002-01-22 23:25:12 (GMT)
commit685d46fee1fef5848956225365ea7840b55b95ad (patch)
tree866bdcb35753ff329727cb65112be0f6b2306e83
parenta618c3fcfea1f2440feca09eb60e6a3076fa05f3 (diff)
downloadcpython-685d46fee1fef5848956225365ea7840b55b95ad.zip
cpython-685d46fee1fef5848956225365ea7840b55b95ad.tar.gz
cpython-685d46fee1fef5848956225365ea7840b55b95ad.tar.bz2
Newer names for various error include files.
-rw-r--r--Mac/scripts/mkestrres.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/scripts/mkestrres.py b/Mac/scripts/mkestrres.py
index b0580a2..c5ff6d3 100644
--- a/Mac/scripts/mkestrres.py
+++ b/Mac/scripts/mkestrres.py
@@ -111,13 +111,13 @@ def main():
parse_errno_h(fp, dict)
fp.close()
- fss, ok = macfs.PromptGetFile("Select 2nd errno.h (MSL) or cancel")
+ fss, ok = macfs.PromptGetFile("Select cerrno (MSL) or cancel")
if not ok: return
fp = open(fss.as_pathname())
parse_errno_h(fp, dict)
fp.close()
- fss, ok = macfs.PromptGetFile("Where is Errors.h?")
+ fss, ok = macfs.PromptGetFile("Where is MacErrors.h?")
if not ok: return
fp = open(fss.as_pathname())
parse_errors_h(fp, dict)