From ae7636753e15273742515eb123999d23f6b7985e Mon Sep 17 00:00:00 2001 From: Fredrik Lundh Date: Sun, 18 Feb 2001 11:41:49 +0000 Subject: stupid typo (for some reason, this only caused problems on OpenVMS). --- Modules/unicodedata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index dfe2f7b..f138195 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -368,7 +368,7 @@ getcode(const char* name, int namelen, Py_UCS4* code) i = (i + incr) & mask; v = code_hash[i]; if (!v) - return -1; + return 0; if (cmpname(v, name, namelen)) { *code = v; return 1; -- cgit v0.12