aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez>2005-04-07 07:27:52 +0000
committerantirez <antirez>2005-04-07 07:27:52 +0000
commit14c7f56961129ad63807351ece92f93e9bc76cf6 (patch)
treef3414026a449e4e4ed7d634d68692721e5f10418
parent1bc8475bb9ef3ef508cda965290aca44f35f120c (diff)
downloadjimtcl-14c7f56961129ad63807351ece92f93e9bc76cf6.zip
jimtcl-14c7f56961129ad63807351ece92f93e9bc76cf6.tar.gz
jimtcl-14c7f56961129ad63807351ece92f93e9bc76cf6.tar.bz2
Fixed a typo that prevented compilation with JIM_ANSIC
-rw-r--r--ChangeLog7
-rw-r--r--jimsh.c4
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5a6efd6..c314ff2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-04-07 08:52 antirez
+
+ * ChangeLog, jim.c: The ** expr operator, thanks to Richard
+ Suchenwirth. Limited to integers because pow() needs the
+ inclusion of math.h. The plan is to put everything depends on
+ math.h in the math lib.
+
2005-04-06 20:20 antirez
* ChangeLog, jim.c, jimsh.c: Modified jimsh.c in order to put the
diff --git a/jimsh.c b/jimsh.c
index c6582dd..1e4c1f6 100644
--- a/jimsh.c
+++ b/jimsh.c
@@ -1,7 +1,7 @@
/* Jimsh - An interactive shell for Jim
* Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
*
- * $Id: jimsh.c,v 1.5 2005/04/06 18:20:00 antirez Exp $
+ * $Id: jimsh.c,v 1.6 2005/04/07 07:27:52 antirez Exp $
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -82,7 +82,7 @@ static Jim_Obj *JimGetExePath(Jim_Interp *interp, const char *argv0)
/* ... and impossible with just ANSI C */
static Jim_Obj *JimGetExePath(Jim_Interp *interp, const char *argv0)
{
- JIM_UNUSED(argv0);
+ JIM_NOTUSED(argv0);
return Jim_NewStringObj(interp, "/usr/local/lib/jim/", -1);
}
#endif /* JIM_ANSIC */