summaryrefslogtreecommitdiffstats
path: root/generic/tkTextTag.c
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2003-12-10 12:57:59 (GMT)
committervincentdarley <vincentdarley>2003-12-10 12:57:59 (GMT)
commit76def108447a5b556912757777418ae8f14e8d91 (patch)
tree90d271d81d7ac0023e01e5078974e86950b94e72 /generic/tkTextTag.c
parent3d332dfaf096c37d18523caeeed045444df36079 (diff)
downloadtk-76def108447a5b556912757777418ae8f14e8d91.zip
tk-76def108447a5b556912757777418ae8f14e8d91.tar.gz
tk-76def108447a5b556912757777418ae8f14e8d91.tar.bz2
off-by-one error in recent cleanup fix
Diffstat (limited to 'generic/tkTextTag.c')
-rw-r--r--generic/tkTextTag.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkTextTag.c b/generic/tkTextTag.c
index 4fb536a..b862d1b 100644
--- a/generic/tkTextTag.c
+++ b/generic/tkTextTag.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: tkTextTag.c,v 1.16 2003/12/09 13:43:35 vincentdarley Exp $
+ * RCS: @(#) $Id: tkTextTag.c,v 1.17 2003/12/10 12:57:59 vincentdarley Exp $
*/
#include "default.h"
@@ -1005,7 +1005,7 @@ TkTextFreeTag(textPtr, tagPtr)
for (; i < textPtr->numCurTags-1; i++) {
textPtr->curTagArrayPtr[i] = textPtr->curTagArrayPtr[i+1];
}
- textPtr->curTagArrayPtr[textPtr->numCurTags] = NULL;
+ textPtr->curTagArrayPtr[textPtr->numCurTags-1] = NULL;
textPtr->numCurTags--;
break;
}