]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
unused vars
authorGuido van Rossum <guido@python.org>
Thu, 26 Jan 1995 00:37:10 +0000 (00:37 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 26 Jan 1995 00:37:10 +0000 (00:37 +0000)
Modules/stdwinmodule.c

index eb411123fc7f8e13fc35ff983daa568f95d0e273..896207cca5ecf206da74b37cb292458d42d078cd 100644 (file)
@@ -1784,7 +1784,6 @@ window_textcreate(self, args)
        windowobject *self;
        object *args;
 {
-       textobject *tp;
        int a[4];
        if (!getrectarg(args, a))
                return NULL;
@@ -2600,12 +2599,12 @@ initstdwin()
 {
        object *m, *d;
        static int inited = 0;
-       char buf[1000];
 
        if (!inited) {
 #ifdef macintosh
                winit();
 #else
+               char buf[1000];
                int argc = 0;
                char **argv = NULL;
                object *sys_argv = sysget("argv");