summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/mlte/Mltemodule.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-07-14 14:00:50 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-07-14 14:00:50 (GMT)
commitf0ded2f0bc1bb295aaab0b4385a576a99088c18c (patch)
treef932074a959ca5e48f4db7be2ada7377f700d301 /Mac/Modules/mlte/Mltemodule.c
parente1608529d1028f69f808c4392d13601d96998950 (diff)
downloadcpython-f0ded2f0bc1bb295aaab0b4385a576a99088c18c.zip
cpython-f0ded2f0bc1bb295aaab0b4385a576a99088c18c.tar.gz
cpython-f0ded2f0bc1bb295aaab0b4385a576a99088c18c.tar.bz2
Various small fixes. The demo now starts to limp along.
Diffstat (limited to 'Mac/Modules/mlte/Mltemodule.c')
-rw-r--r--Mac/Modules/mlte/Mltemodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/mlte/Mltemodule.c b/Mac/Modules/mlte/Mltemodule.c
index a25c6f7..27bd121 100644
--- a/Mac/Modules/mlte/Mltemodule.c
+++ b/Mac/Modules/mlte/Mltemodule.c
@@ -191,7 +191,7 @@ static PyObject *TXNObj_TXNAdjustCursor(TXNObjectObject *_self, PyObject *_args)
RgnHandle ioCursorRgn;
PyMac_PRECHECK(TXNAdjustCursor);
if (!PyArg_ParseTuple(_args, "O&",
- ResObj_Convert, &ioCursorRgn))
+ OptResObj_Convert, &ioCursorRgn))
return NULL;
TXNAdjustCursor(_self->ob_itself,
ioCursorRgn);