From 1cbe671a0c4fe9b12fe788f2a863e6bc4e965d76 Mon Sep 17 00:00:00 2001
From: Jeremy Katz <katzj@redhat.com>
Date: Tue, 25 Feb 2003 21:26:20 +0000
Subject: remove map from the lang-table.  we don't ever use it anymore during
 the install and isys.loadFont was just throwing out the argument (#84275)

---
 isys/isys.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'isys/isys.c')

diff --git a/isys/isys.c b/isys/isys.c
index 53098741b..02ffe0d45 100644
--- a/isys/isys.c
+++ b/isys/isys.c
@@ -980,7 +980,7 @@ static PyObject * doLoadFont (PyObject * s, PyObject * args) {
     char * font;
     int ret;
 
-    if (!PyArg_ParseTuple(args, "s", &font)) return NULL;
+    if (!PyArg_ParseTuple(args, "")) return NULL;
 
     ret = isysLoadFont ();
     if (ret) {
-- 
cgit