diff options
-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 */ |