diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-21 06:00:07 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-21 06:00:07 (GMT) |
commit | f3f33dcf03eaed3c4e720178f9d69205a66d6a91 (patch) | |
tree | 3365212ce8b6f11765dfd8cbc774c0c8b2f9260e /Modules/_tkinter.c | |
parent | ff4df6d6fbeac136053ba4f9b7ac567fbf39e6be (diff) | |
download | cpython-f3f33dcf03eaed3c4e720178f9d69205a66d6a91.zip cpython-f3f33dcf03eaed3c4e720178f9d69205a66d6a91.tar.gz cpython-f3f33dcf03eaed3c4e720178f9d69205a66d6a91.tar.bz2 |
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 ;)
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r-- | Modules/_tkinter.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 0383f1e..f61b0de 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -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; |