diff options
author | das <das> | 2004-01-27 10:09:22 (GMT) |
---|---|---|
committer | das <das> | 2004-01-27 10:09:22 (GMT) |
commit | 42e2de4bed03dc0f5cac4e371af1d9a098751a74 (patch) | |
tree | 5190bf4d0a24d1a2e18c8b19c6e1b0abdec18bf6 /generic/tkTextIndex.c | |
parent | 921593fd92b08ad8a7b0e708d192e73ac620e163 (diff) | |
download | tk-42e2de4bed03dc0f5cac4e371af1d9a098751a74.zip tk-42e2de4bed03dc0f5cac4e371af1d9a098751a74.tar.gz tk-42e2de4bed03dc0f5cac4e371af1d9a098751a74.tar.bz2 |
* generic/tkTextIndex.c: added '#include <tclInt.h>' since the
code uses the TclUtfToUniChar macro from that file. [Bug 874745]
* macosx/Wish.pbproj/project.pbxproj: removed erroneous reference
to mkpsenc.tcl in bundle resources phase (mkpsenc.tcl is already
part of the copy files phase to Resources/Scripts).
* macosx/Makefile: added support for 'xcodebuild' on Mac OS X 10.3.
Diffstat (limited to 'generic/tkTextIndex.c')
-rw-r--r-- | generic/tkTextIndex.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tkTextIndex.c b/generic/tkTextIndex.c index 85349c2..8588020 100644 --- a/generic/tkTextIndex.c +++ b/generic/tkTextIndex.c @@ -10,13 +10,14 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkTextIndex.c,v 1.15 2004/01/13 02:06:01 davygrvy Exp $ + * RCS: @(#) $Id: tkTextIndex.c,v 1.16 2004/01/27 10:09:35 das Exp $ */ #include "default.h" #include "tkPort.h" #include "tkInt.h" #include "tkText.h" +#include <tclInt.h> /* * Index to use to select last character in line (very large integer): |