diff options
author | Michael W. Hudson <mwh@python.net> | 2002-01-16 15:18:09 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2002-01-16 15:18:09 (GMT) |
commit | 8f5146088a90183dd8d01ac0354afcfccf56c9c7 (patch) | |
tree | 5aad470c45abd6288fb16bf54cdd1c0572d09e1c /Modules | |
parent | f24281251fef00f827176c77b0a6ce987e12c145 (diff) | |
download | cpython-8f5146088a90183dd8d01ac0354afcfccf56c9c7.zip cpython-8f5146088a90183dd8d01ac0354afcfccf56c9c7.tar.gz cpython-8f5146088a90183dd8d01ac0354afcfccf56c9c7.tar.bz2 |
Change some spaces to tabs. I don't *think* that was me, but it
might have been...
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_cursesmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c index 893ccaa..d3f97be 100644 --- a/Modules/_cursesmodule.c +++ b/Modules/_cursesmodule.c @@ -2311,13 +2311,13 @@ PyCurses_tparm(PyObject *self, PyObject *args) } #if defined(__hpux) || defined(_AIX) - /* tparm is declared with 10 arguments on a few platforms + /* tparm is declared with 10 arguments on a few platforms (HP-UX, AIX). If this proves to be a problem on other platforms as well, perhaps an autoconf test should be added to determine whether tparm can be called with a variable number of arguments. Perhaps the other arguments should be initialized in this case also. */ - result = tparm(fmt,i1,i2,i3,i4,i5,i6,i7,i8,i9); + result = tparm(fmt,i1,i2,i3,i4,i5,i6,i7,i8,i9); #else switch (PyTuple_GET_SIZE(args)) { case 1: |