aboutsummaryrefslogtreecommitdiff
path: root/jim.h
diff options
context:
space:
mode:
authorantirez <antirez>2005-02-27 17:06:16 +0000
committerantirez <antirez>2005-02-27 17:06:16 +0000
commit188b257855973b53b68cc814141cf4ed6f709a00 (patch)
tree71e4ba6073cd14e006a95be3d6de4af2322937b2 /jim.h
parentba67c1dc4e964e555617f05d4acc0ee77f4ff7fc (diff)
downloadjimtcl-188b257855973b53b68cc814141cf4ed6f709a00.zip
jimtcl-188b257855973b53b68cc814141cf4ed6f709a00.tar.gz
jimtcl-188b257855973b53b68cc814141cf4ed6f709a00.tar.bz2
aritymin/aritymax information no longer used for C-coded commands.
API changed accordingly.
Diffstat (limited to 'jim.h')
-rw-r--r--jim.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/jim.h b/jim.h
index 0985de9..1baa5af 100644
--- a/jim.h
+++ b/jim.h
@@ -481,8 +481,7 @@ void JIM_API(Jim_FreeInterp) (Jim_Interp *i);
/* commands */
void JIM_API(Jim_RegisterCoreCommands) (Jim_Interp *interp);
int JIM_API(Jim_CreateCommand) (Jim_Interp *interp, char *cmdName,
- Jim_CmdProc cmdProc, int arityMin, int arityMax,
- void *privData);
+ Jim_CmdProc cmdProc, void *privData);
int JIM_API(Jim_CreateProcedure) (Jim_Interp *interp, char *cmdName,
Jim_Obj *argListObjPtr, Jim_Obj *bodyObjPtr,
int arityMin, int arityMax);