aboutsummaryrefslogtreecommitdiff
path: root/jim.h
diff options
context:
space:
mode:
authorantirez <antirez>2005-03-17 07:40:25 +0000
committerantirez <antirez>2005-03-17 07:40:25 +0000
commitc2c796e7dc477aacb14ac66423bd74ab356bcc44 (patch)
treea696a5f0c695733cdb8c342adfe65f62950bff6c /jim.h
parentec5a41ceb2faf4cd712cd3aea25d79002e7caf39 (diff)
downloadjimtcl-c2c796e7dc477aacb14ac66423bd74ab356bcc44.zip
jimtcl-c2c796e7dc477aacb14ac66423bd74ab356bcc44.tar.gz
jimtcl-c2c796e7dc477aacb14ac66423bd74ab356bcc44.tar.bz2
[source] command added.
Diffstat (limited to 'jim.h')
-rw-r--r--jim.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/jim.h b/jim.h
index 8b2bc07..d9ea055 100644
--- a/jim.h
+++ b/jim.h
@@ -1,7 +1,7 @@
/* Jim - A small embeddable Tcl interpreter
* Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
*
- * $Id: jim.h,v 1.58 2005/03/17 07:22:04 antirez Exp $
+ * $Id: jim.h,v 1.59 2005/03/17 07:40:25 antirez Exp $
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -520,7 +520,7 @@ JIM_STATIC char * JIM_API(Jim_StrDup) (const char *s);
/* evaluation */
JIM_STATIC int JIM_API(Jim_Eval)(Jim_Interp *interp, const char *script);
JIM_STATIC int JIM_API(Jim_EvalGlobal)(Jim_Interp *interp, const char *script);
-JIM_STATIC int JIM_API(Jim_EvalFile)(Jim_Interp *interp, char *filename);
+JIM_STATIC int JIM_API(Jim_EvalFile)(Jim_Interp *interp, const char *filename);
JIM_STATIC int JIM_API(Jim_EvalObj) (Jim_Interp *interp, Jim_Obj *scriptObjPtr);
JIM_STATIC int JIM_API(Jim_EvalObjVector) (Jim_Interp *interp, int objc,
Jim_Obj *const *objv);