From 774a968a6493e4d2333d80a3b9205df4f1c6fc06 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Wed, 18 Jul 2001 22:37:56 +0000 Subject: [PATCH] If Python doesn't have a Unicode codec for the current system encoding return "ascii", not "macroman". --- Mac/Python/macglue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index c760107a990f..5fdfe559efa4 100644 --- a/Mac/Python/macglue.c +++ b/Mac/Python/macglue.c @@ -227,7 +227,7 @@ char *PyMac_getscript() case smCyrillic: return "mac-cyrillic"; default: - return "mac-roman"; /* better than nothing */ + return "ascii"; /* better than nothing */ } } -- 2.47.3