mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',
and a couple of functions that were missed in the previous batches. Not
terribly tested, but very carefully scrutinized, three times.
All these were found by the little findkrc.py that I posted to python-dev,
which means there might be more lurking. Cases such as this:
long
func(a, b)
long a;
long b; /* flagword */
{
and other cases where the last ; in the argument list isn't followed by a
newline and an opening curly bracket. Regexps to catch all are welcome, of
course ;)
This commit is contained in:
parent
ff4df6d6fb
commit
f3f33dcf03
59 changed files with 103 additions and 117 deletions
|
|
@ -1912,9 +1912,7 @@ Tkinter_Flatten(PyObject* self, PyObject* args)
|
|||
}
|
||||
|
||||
static PyObject *
|
||||
Tkinter_Create(self, args)
|
||||
PyObject *self;
|
||||
PyObject *args;
|
||||
Tkinter_Create(PyObject *self, PyObject *args)
|
||||
{
|
||||
char *screenName = NULL;
|
||||
char *baseName = NULL;
|
||||
|
|
@ -1967,7 +1965,7 @@ MyFileProc(void *clientData, int mask)
|
|||
static PyThreadState *event_tstate = NULL;
|
||||
|
||||
static int
|
||||
EventHook()
|
||||
EventHook(void)
|
||||
{
|
||||
#ifndef MS_WINDOWS
|
||||
int tfile;
|
||||
|
|
@ -2026,7 +2024,7 @@ EventHook()
|
|||
#endif
|
||||
|
||||
static void
|
||||
EnableEventHook()
|
||||
EnableEventHook(void)
|
||||
{
|
||||
#ifdef WAIT_FOR_STDIN
|
||||
if (PyOS_InputHook == NULL) {
|
||||
|
|
@ -2039,7 +2037,7 @@ EnableEventHook()
|
|||
}
|
||||
|
||||
static void
|
||||
DisableEventHook()
|
||||
DisableEventHook(void)
|
||||
{
|
||||
#ifdef WAIT_FOR_STDIN
|
||||
if (Tk_GetNumMainWindows() == 0 && PyOS_InputHook == EventHook) {
|
||||
|
|
@ -2071,7 +2069,7 @@ ins_string(PyObject *d, char *name, char *val)
|
|||
|
||||
|
||||
DL_EXPORT(void)
|
||||
init_tkinter()
|
||||
init_tkinter(void)
|
||||
{
|
||||
PyObject *m, *d;
|
||||
|
||||
|
|
@ -2218,7 +2216,7 @@ init_tkinter_shlib(CFragInitBlockPtr data)
|
|||
** the resources from the application. Again, we ignore errors.
|
||||
*/
|
||||
static
|
||||
mac_addlibresources()
|
||||
mac_addlibresources(void)
|
||||
{
|
||||
if ( !loaded_from_shlib )
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue