[Python-checkins] CVS: python/dist/src/Modules flmodule.c,1.40,1.41 fmmodule.c,1.14,1.15

Sjoerd Mullender python-dev@python.org
Wed, 12 Jul 2000 03:43:14 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv27219

Modified Files:
	flmodule.c fmmodule.c 
Log Message:
Fixed up some ANSIfications.


Index: flmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/flmodule.c,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -r1.40 -r1.41
*** flmodule.c	2000/07/10 17:04:33	1.40
--- flmodule.c	2000/07/12 10:43:11	1.41
***************
*** 344,348 ****
  
  static int
! generic_setattr(genericobject *g, char *name PyObject *v)
  {
  	int ret;
--- 344,348 ----
  
  static int
! generic_setattr(genericobject *g, char *name, PyObject *v)
  {
  	int ret;

Index: fmmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/fmmodule.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** fmmodule.c	2000/07/10 17:04:33	1.14
--- fmmodule.c	2000/07/12 10:43:11	1.15
***************
*** 180,184 ****
  
  static PyObject *
! fm_init(PyObject *self, *args)
  {
  	if (!PyArg_NoArgs(args))
--- 180,184 ----
  
  static PyObject *
! fm_init(PyObject *self, PyObject *args)
  {
  	if (!PyArg_NoArgs(args))
***************
*** 190,194 ****
  
  static PyObject *
! fm_findfont(PyObject *self, *args)
  {
  	char *str;
--- 190,194 ----
  
  static PyObject *
! fm_findfont(PyObject *self, PyObject *args)
  {
  	char *str;
***************
*** 199,203 ****
  
  static PyObject *
! fm_prstr(PyObject *self, *args)
  {
  	char *str;
--- 199,203 ----
  
  static PyObject *
! fm_prstr(PyObject *self, PyObject *args)
  {
  	char *str;
***************
*** 260,264 ****
  
  static PyObject *
! fm_fontpath(PyObject *self, *args)
  {
  	if (!PyArg_NoArgs(args))
--- 260,264 ----
  
  static PyObject *
! fm_fontpath(PyObject *self, PyObject *args)
  {
  	if (!PyArg_NoArgs(args))