diff options
author | dgp@users.sourceforge.net <dgp> | 2002-01-17 03:35:00 (GMT) |
---|---|---|
committer | dgp@users.sourceforge.net <dgp> | 2002-01-17 03:35:00 (GMT) |
commit | cb16fb4f738320d0a3d992704d2d54b874a48535 (patch) | |
tree | 7ba4bea8b33aeafeff8e5bd19ed918e15cfec84a /generic/tkSelect.c | |
parent | 05ab9a9f8fe30aeffb17f7c043e02020901a9e5c (diff) | |
download | tk-cb16fb4f738320d0a3d992704d2d54b874a48535.zip tk-cb16fb4f738320d0a3d992704d2d54b874a48535.tar.gz tk-cb16fb4f738320d0a3d992704d2d54b874a48535.tar.bz2 |
* Updated callers of Tcl_Utf* and Tcl_Regexp* APIs to reflect TIP 27
API changes (see Tcl Patch 471509). [Patch 471513]
Diffstat (limited to 'generic/tkSelect.c')
-rw-r--r-- | generic/tkSelect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkSelect.c b/generic/tkSelect.c index a8335c4..71b73d0 100644 --- a/generic/tkSelect.c +++ b/generic/tkSelect.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkSelect.c,v 1.8 2002/01/04 16:35:04 dgp Exp $ + * RCS: @(#) $Id: tkSelect.c,v 1.9 2002/01/17 03:35:00 dgp Exp $ */ #include "tkInt.h" @@ -1336,7 +1336,7 @@ HandleTclCommand(clientData, offset, buffer, maxBytes) Tcl_DString oldResult; Tcl_Obj *objPtr; int extraBytes, charOffset, count, numChars; - char *p; + CONST char *p; /* * We must also protect the interpreter and the command from being |