diff options
author | rmax <rmax> | 2004-09-10 13:42:45 (GMT) |
---|---|---|
committer | rmax <rmax> | 2004-09-10 13:42:45 (GMT) |
commit | 26d0db975525cd6fd3c934c11a27ac1daa173455 (patch) | |
tree | d5db0a24ebc41ff302fe807c34aa57c603713293 /generic | |
parent | 1f9e64193bcb74b962f1343763b3f7fd9050c45e (diff) | |
download | tk-26d0db975525cd6fd3c934c11a27ac1daa173455.zip tk-26d0db975525cd6fd3c934c11a27ac1daa173455.tar.gz tk-26d0db975525cd6fd3c934c11a27ac1daa173455.tar.bz2 |
fixed a small typo in TextPeerCmd()
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkText.c | 4 |
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?"); |