diff options
author | hobbs <hobbs> | 1999-12-21 23:56:33 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-12-21 23:56:33 (GMT) |
commit | af7ee473b79083a6795f5ab9300f64b4c1961b3c (patch) | |
tree | 3e1d623e322ec0ee93f04c760ab3f0937a3ef4d6 /unix/tkUnixFont.c | |
parent | fdba0d6552ccb3b13cdb2b5f6ba531ebff096158 (diff) | |
download | tk-af7ee473b79083a6795f5ab9300f64b4c1961b3c.zip tk-af7ee473b79083a6795f5ab9300f64b4c1961b3c.tar.gz tk-af7ee473b79083a6795f5ab9300f64b4c1961b3c.tar.bz2 |
* unix/configure.in:
* README: updated for patch level 8.3b1
* unix/tkUnixWm.c: fixed panic in Tk_CoordsToWindow to print error
and continue instead (for Tix) [Bug: 716 et al]
* unix/tkUnixMenu.c:
* unix/tkUnixFont.c:
* generic/tkImgPPM.c: removed extranneous vars that were set but
never used.
* unix/aclocal.m4: removed -O flag for AIX when using the IBM
compiler (several versions have a bug that crops up in the text
widget). [Bug: 2316]
* unix/Makefile.in: removed extra slash in SCRIPT_INSTALL_DIR
[Bug: 3896]
Diffstat (limited to 'unix/tkUnixFont.c')
-rw-r--r-- | unix/tkUnixFont.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/unix/tkUnixFont.c b/unix/tkUnixFont.c index 5ededc3..59826c2 100644 --- a/unix/tkUnixFont.c +++ b/unix/tkUnixFont.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkUnixFont.c,v 1.7 1999/06/01 18:44:56 stanton Exp $ + * RCS: @(#) $Id: tkUnixFont.c,v 1.8 1999/12/21 23:56:34 hobbs Exp $ */ #include "tkUnixInt.h" @@ -339,7 +339,7 @@ ControlUtfProc(clientData, src, srcLen, flags, statePtr, dst, dstLen, * correspond to the bytes stored in the * output buffer. */ { - CONST char *srcStart, *srcEnd; + CONST char *srcEnd; char *dstStart, *dstEnd; Tcl_UniChar ch; int result; @@ -351,7 +351,6 @@ ControlUtfProc(clientData, src, srcLen, flags, statePtr, dst, dstLen, result = TCL_OK; - srcStart = src; srcEnd = src + srcLen; dstStart = dst; |