diff options
author | redman <redman> | 1999-03-07 00:15:43 (GMT) |
---|---|---|
committer | redman <redman> | 1999-03-07 00:15:43 (GMT) |
commit | 46bfdd36ce4350197017fe688e50126bb2d96078 (patch) | |
tree | f7fe94611b6c21ea4e04e6bbe2e14bed676f3b67 /generic/tkConsole.c | |
parent | 6a6d3284e86e6e0e635cd678424fe6ecf3d68d44 (diff) | |
download | tk-46bfdd36ce4350197017fe688e50126bb2d96078.zip tk-46bfdd36ce4350197017fe688e50126bb2d96078.tar.gz tk-46bfdd36ce4350197017fe688e50126bb2d96078.tar.bz2 |
Stubs changes, now wish works on Windows.
Diffstat (limited to 'generic/tkConsole.c')
-rw-r--r-- | generic/tkConsole.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tkConsole.c b/generic/tkConsole.c index 6f89c48..d1532ac 100644 --- a/generic/tkConsole.c +++ b/generic/tkConsole.c @@ -10,10 +10,11 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkConsole.c,v 1.3.4.1 1999/03/06 23:18:05 stanton Exp $ + * RCS: @(#) $Id: tkConsole.c,v 1.3.4.2 1999/03/07 00:15:43 redman Exp $ */ #include "tk.h" +#include "tkInt.h" #include <string.h> /* @@ -167,6 +168,7 @@ TkConsoleInit(interp) #endif consoleInterp = Tcl_CreateInterp(); + if (consoleInterp == NULL) { goto error; } |