diff options
author | das <das> | 2004-01-27 10:09:22 (GMT) |
---|---|---|
committer | das <das> | 2004-01-27 10:09:22 (GMT) |
commit | b943941ae6c6a3b3fbfdae1ee6faeaa1c2935dc6 (patch) | |
tree | 5190bf4d0a24d1a2e18c8b19c6e1b0abdec18bf6 /generic/tkTextIndex.c | |
parent | 22fe40f0cbe218708d83d9ad00f6005e5482566c (diff) | |
download | tk-b943941ae6c6a3b3fbfdae1ee6faeaa1c2935dc6.zip tk-b943941ae6c6a3b3fbfdae1ee6faeaa1c2935dc6.tar.gz tk-b943941ae6c6a3b3fbfdae1ee6faeaa1c2935dc6.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): |