diff options
author | dgp <dgp@users.sourceforge.net> | 2002-01-26 01:10:08 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-01-26 01:10:08 (GMT) |
commit | 107d41756017e763fb66994fb0ba6072b20a7d2b (patch) | |
tree | e98bf2d4819a5270b97f764736441c86b9eb51e3 /generic/tclUtf.c | |
parent | 727dc02ba3e05c4df81068bc3fd0ac3a8c98328b (diff) | |
download | tcl-107d41756017e763fb66994fb0ba6072b20a7d2b.zip tcl-107d41756017e763fb66994fb0ba6072b20a7d2b.tar.gz tcl-107d41756017e763fb66994fb0ba6072b20a7d2b.tar.bz2 |
* Sought out and eliminated instances of CONST-casting that are no
longer needed after the TIP 27 effort.
Diffstat (limited to 'generic/tclUtf.c')
-rw-r--r-- | generic/tclUtf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclUtf.c b/generic/tclUtf.c index d8b6565..2656d5a 100644 --- a/generic/tclUtf.c +++ b/generic/tclUtf.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUtf.c,v 1.21 2002/01/17 03:03:12 dgp Exp $ + * RCS: @(#) $Id: tclUtf.c,v 1.22 2002/01/26 01:10:08 dgp Exp $ */ #include "tclInt.h" @@ -673,7 +673,7 @@ Tcl_UtfPrev(str, start) break; } if (byte >= 0xC0) { - return (char *) look; + return look; } look--; } |