diff options
author | antirez <antirez> | 2005-04-07 07:27:52 +0000 |
---|---|---|
committer | antirez <antirez> | 2005-04-07 07:27:52 +0000 |
commit | 14c7f56961129ad63807351ece92f93e9bc76cf6 (patch) | |
tree | f3414026a449e4e4ed7d634d68692721e5f10418 | |
parent | 1bc8475bb9ef3ef508cda965290aca44f35f120c (diff) | |
download | jimtcl-14c7f56961129ad63807351ece92f93e9bc76cf6.zip jimtcl-14c7f56961129ad63807351ece92f93e9bc76cf6.tar.gz jimtcl-14c7f56961129ad63807351ece92f93e9bc76cf6.tar.bz2 |
Fixed a typo that prevented compilation with JIM_ANSIC
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | jimsh.c | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -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 @@ -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 */ |