diff options
author | hobbs <hobbs> | 2002-04-12 06:51:50 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-04-12 06:51:50 (GMT) |
commit | 659c4085c492c12bbd774955860f223e389260eb (patch) | |
tree | cdc76c59812627b3ca1518fce658898c879bd86f /generic/tkConsole.c | |
parent | e0218b99052bc3d89bbfe7a39c0a2b7eed56116f (diff) | |
download | tk-659c4085c492c12bbd774955860f223e389260eb.zip tk-659c4085c492c12bbd774955860f223e389260eb.tar.gz tk-659c4085c492c12bbd774955860f223e389260eb.tar.bz2 |
* generic/tkConsole.c (ConsoleCmd): correct return that should
have just set result code.
Diffstat (limited to 'generic/tkConsole.c')
-rw-r--r-- | generic/tkConsole.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkConsole.c b/generic/tkConsole.c index e51d687..e004155 100644 --- a/generic/tkConsole.c +++ b/generic/tkConsole.c @@ -10,7 +10,7 @@ * 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.16 2002/01/15 20:48:29 dgp Exp $ + * RCS: @(#) $Id: tkConsole.c,v 1.17 2002/04/12 06:51:50 hobbs Exp $ */ #include "tk.h" @@ -602,7 +602,7 @@ ConsoleCmd(clientData, interp, argc, argv) } else { Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0], " eval command\"", (char *) NULL); - return TCL_ERROR; + result = TCL_ERROR; } } else { Tcl_AppendResult(interp, "bad option \"", argv[1], |