diff options
author | hobbs <hobbs> | 1999-12-21 23:55:09 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-12-21 23:55:09 (GMT) |
commit | e3249c7140d13964c60a406053e850c11fe0a8d3 (patch) | |
tree | 2bdd8c171e7711b0c956672d13d8df8239573690 /generic/tkCmds.c | |
parent | c30bbd5faddbda1bb9f7ce951124d2c87110f082 (diff) | |
download | tk-e3249c7140d13964c60a406053e850c11fe0a8d3.zip tk-e3249c7140d13964c60a406053e850c11fe0a8d3.tar.gz tk-e3249c7140d13964c60a406053e850c11fe0a8d3.tar.bz2 |
* generic/tk.h:
* README: updated for patch level 8.3b1
* generic/tkScale.c:
* generic/tkScale.h: fixed possible core when freeing options
(cursor) associated with scale widget [Bug: 3897]
* generic/tk3d.c: added extra calculations to ensure that thin
frames get refreshed too [Bug: 3596]
* generic/tkCanvText.c:
* generic/tkEntry.c:
* generic/tkFont.c:
* generic/tkImgPPM.c: removed extranneous vars that were set but
never used.
Diffstat (limited to 'generic/tkCmds.c')
-rw-r--r-- | generic/tkCmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkCmds.c b/generic/tkCmds.c index 15650f2..ffa171f 100644 --- a/generic/tkCmds.c +++ b/generic/tkCmds.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: tkCmds.c,v 1.9 1999/12/16 21:57:35 hobbs Exp $ + * RCS: @(#) $Id: tkCmds.c,v 1.10 1999/12/21 23:55:10 hobbs Exp $ */ #include "tkPort.h" @@ -652,7 +652,6 @@ Tk_TkObjCmd(clientData, interp, objc, objv) dispPtr = ((TkWindow *) tkwin)->dispPtr; } if ((objc - skip) == 3) { -#ifdef TK_USE_INPUT_METHODS /* * In the case where TK_USE_INPUT_METHODS is not defined, * this will be ignored and we will always return 0. @@ -664,6 +663,7 @@ Tk_TkObjCmd(clientData, interp, objc, objv) != TCL_OK) { return TCL_ERROR; } +#ifdef TK_USE_INPUT_METHODS dispPtr->useInputMethods = bool; #endif /* TK_USE_INPUT_METHODS */ } else if ((objc - skip) != 2) { |