Index: generic/tclAPI.h =================================================================== diff -u -r73e2bbd4ee9e0acbe38dd7bb634a9ad11e7b3bf5 -raef0c8541f096447f838953d4f4de16e19dbf6c1 --- generic/tclAPI.h (.../tclAPI.h) (revision 73e2bbd4ee9e0acbe38dd7bb634a9ad11e7b3bf5) +++ generic/tclAPI.h (.../tclAPI.h) (revision aef0c8541f096447f838953d4f4de16e19dbf6c1) @@ -1,12 +1,12 @@ static int convertToInfomethodsubcmd(Tcl_Interp *interp, Tcl_Obj *objPtr, XOTclParam CONST *pPtr, ClientData *clientData) { int index, result; - static CONST char *opts[] = {"definition", "name", "type", NULL}; + static CONST char *opts[] = {"definition", "name", "parameter", "type", NULL}; result = Tcl_GetIndexFromObj(interp, objPtr, opts, "infomethodsubcmd", 0, &index); *clientData = (ClientData) index + 1; return result; } -enum InfomethodsubcmdIdx {InfomethodsubcmdNULL, InfomethodsubcmdDefinitionIdx, InfomethodsubcmdNameIdx, InfomethodsubcmdTypeIdx}; +enum InfomethodsubcmdIdx {InfomethodsubcmdNULL, InfomethodsubcmdDefinitionIdx, InfomethodsubcmdNameIdx, InfomethodsubcmdParameterIdx, InfomethodsubcmdTypeIdx}; static int convertToMethodtype(Tcl_Interp *interp, Tcl_Obj *objPtr, XOTclParam CONST *pPtr, ClientData *clientData) { int index, result;