From: Neal Norwitz Date: Mon, 17 Apr 2006 00:36:29 +0000 (+0000) Subject: No reason to export get_decomp_record, make static X-Git-Tag: v2.5a2~180 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=88c97845c6c5f84bb503c95828055c12c562c623;p=thirdparty%2FPython%2Fcpython.git No reason to export get_decomp_record, make static --- diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index 1e4908fd9f07..297611cec461 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -446,7 +446,7 @@ unicodedata_decomposition(PyObject *self, PyObject *args) return PyString_FromString(decomp); } -void +static void get_decomp_record(PyObject *self, Py_UCS4 code, int *index, int *prefix, int *count) { if (code >= 0x110000) {