diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2012-07-30 09:08:25 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2012-07-30 09:08:25 (GMT) |
commit | 6bf54807590332f4ea52ede7a404f0a4cc70a9ec (patch) | |
tree | 031f1c2df728052af4573ff7ea91cadf69634adf /generic/tkText.c | |
parent | 681f4133bc1ab9f99b6fb13d09774aaea60dfca6 (diff) | |
download | tk-6bf54807590332f4ea52ede7a404f0a4cc70a9ec.zip tk-6bf54807590332f4ea52ede7a404f0a4cc70a9ec.tar.gz tk-6bf54807590332f4ea52ede7a404f0a4cc70a9ec.tar.bz2 |
more auditing of error codes
Diffstat (limited to 'generic/tkText.c')
-rw-r--r-- | generic/tkText.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tkText.c b/generic/tkText.c index 0970794..e7b1c4d 100644 --- a/generic/tkText.c +++ b/generic/tkText.c @@ -1039,7 +1039,7 @@ TextWidgetObjCmd( "bad option \"%s\" must be -chars, -displaychars, " "-displayindices, -displaylines, -indices, -lines, -update, " "-xpixels, or -ypixels", Tcl_GetString(objv[i]))); - Tcl_SetErrorCode(interp, "TK", "VALUE", "INDEXOPT", NULL); + Tcl_SetErrorCode(interp, "TK", "TEXT", "INDEX_OPTION", NULL); result = TCL_ERROR; goto done; } @@ -1403,7 +1403,7 @@ TextWidgetObjCmd( Tcl_SetObjResult(interp, Tcl_ObjPrintf( "index \"%s\" before \"%s\" in the text", Tcl_GetString(objv[3]), Tcl_GetString(objv[2]))); - Tcl_SetErrorCode(interp, "TK", "TEXT", "INDEXORDER", NULL); + Tcl_SetErrorCode(interp, "TK", "TEXT", "INDEX_ORDER", NULL); result = TCL_ERROR; goto done; } @@ -2066,7 +2066,7 @@ ConfigureText( if (start > end) { Tcl_SetObjResult(interp, Tcl_NewStringObj( "-startline must be less than or equal to -endline", -1)); - Tcl_SetErrorCode(interp, "TK", "TEXT", "INDEXORDER", NULL); + Tcl_SetErrorCode(interp, "TK", "TEXT", "INDEX_ORDER", NULL); Tk_RestoreSavedOptions(&savedOptions); return TCL_ERROR; } @@ -4421,7 +4421,7 @@ TkTextGetTabs( Tcl_SetObjResult(interp, Tcl_ObjPrintf( "tab stop \"%s\" is not at a positive distance", Tcl_GetString(objv[i]))); - Tcl_SetErrorCode(interp, "TK", "VALUE", "TABSTOP", NULL); + Tcl_SetErrorCode(interp, "TK", "VALUE", "TAB_STOP", NULL); goto error; } @@ -4455,7 +4455,7 @@ TkTextGetTabs( "tabs must be monotonically increasing, but \"%s\" is " "smaller than or equal to the previous tab", Tcl_GetString(objv[i]))); - Tcl_SetErrorCode(interp, "TK", "VALUE", "TABSTOP", NULL); + Tcl_SetErrorCode(interp, "TK", "VALUE", "TAB_STOP", NULL); goto error; #endif /* _TK_ALLOW_DECREASING_TABS */ } |