summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrmax <rmax@noemail.net>2004-09-10 13:42:44 (GMT)
committerrmax <rmax@noemail.net>2004-09-10 13:42:44 (GMT)
commitb46f91c8a29c3fdee8b2450675699e33e0390f6c (patch)
treed5db0a24ebc41ff302fe807c34aa57c603713293
parent62f6ab14bcd9635ce51e98362e905a0353c48ed0 (diff)
downloadtk-b46f91c8a29c3fdee8b2450675699e33e0390f6c.zip
tk-b46f91c8a29c3fdee8b2450675699e33e0390f6c.tar.gz
tk-b46f91c8a29c3fdee8b2450675699e33e0390f6c.tar.bz2
fixed a small typo in TextPeerCmd()
FossilOrigin-Name: fe5b1c98b24afda0a26b638d7a8bcaca5b432ead
-rw-r--r--generic/tkText.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkText.c b/generic/tkText.c
index a920b20..f8a1abd 100644
--- a/generic/tkText.c
+++ b/generic/tkText.c
@@ -14,7 +14,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkText.c,v 1.52 2004/09/10 12:13:40 vincentdarley Exp $
+ * RCS: @(#) $Id: tkText.c,v 1.53 2004/09/10 13:42:45 rmax Exp $
*/
#include "default.h"
@@ -1637,7 +1637,7 @@ TextPeerCmd(textPtr, interp, objc, objv)
return TCL_ERROR;
}
- switch ((enum editOptions)index) {
+ switch ((enum peerOptions)index) {
case PEER_CREATE: {
if (objc < 4) {
Tcl_WrongNumArgs(interp, 3, objv, "pathName ?options?");