aboutsummaryrefslogtreecommitdiff
path: root/jim.c
AgeCommit message (Expand)AuthorFilesLines
2005-03-21Add the [scan] command and the Jim_ScanString function + tests.chi1-3/+507
2005-03-19Jim_GetIndex() bug fixed (SS)antirez1-3/+3
2005-03-19[finalize] command and relative C API added (SS).antirez1-4/+52
2005-03-18now [setref] returns the value assigned to the reference instead ofantirez1-3/+3
2005-03-18Fixed an EXPR bug.antirez1-4/+7
2005-03-17[lreverse]antirez1-2/+23
2005-03-17Applied PATCH #389antirez1-2/+3
2005-03-17Objects hash function changed.antirez1-44/+15
2005-03-17[source] command added.antirez1-4/+21
2005-03-17The interactive prompt can now used to type/paste multi line scripts.antirez1-12/+39
2005-03-16[env] modified to just be able to read a specified var nameantirez1-44/+17
2005-03-16Added interpreter pointer to the command delete proc.patthoyts1-5/+5
2005-03-16Added the [env] commandantirez1-3/+64
2005-03-16added CVS ID info in the banner.antirez1-1/+2
2005-03-16more GC fixes.antirez1-5/+5
2005-03-16Fixed a bug introduced in the Gargage Collection code some commit ago.antirez1-2/+6
2005-03-15A first version of [info complete].antirez1-80/+124
2005-03-15[info level ?level?] fixed. Tests uncommented.antirez1-3/+49
2005-03-14const policepatthoyts1-3/+3
2005-03-14'iterator' argument modified to 'iter' for C++ STL safety.antirez1-17/+17
2005-03-14more fixes to allow inclusion of jim.h into C++ programs.antirez1-4/+5
2005-03-14Removed the inclusion of a not-needed header file "sys/time.h"antirez1-5/+1
2005-03-14[lmap] command.antirez1-9/+42
2005-03-13[string first]. Tests still not added, until [string] is not (almost instead)antirez1-8/+57
2005-03-13[string index] implementedantirez1-28/+24
2005-03-12Jim_GetEnum() will now sort the options in the error message (ss)antirez1-2/+15
2005-03-12Added the ability to compile with -DJIM_ANSIC to use only ANSI-Cantirez1-6/+7
2005-03-12Added the Jim_FreeNewObj() macro to free objects with refcount == 0antirez1-32/+17
2005-03-12It's now possible to exclude compilation of dynamic loadedantirez1-3/+17
2005-03-12Modified Jim_Free() to be more strict, now it panics if theantirez1-3/+3
2005-03-11Converted some free() call to Jim_Free(). Actually Jim_Freeantirez1-7/+7
2005-03-11[lambda] modified to be 'statics' capable.antirez1-3/+3
2005-03-11Fix about [rename] against procedures with statics.antirez1-1/+3
2005-03-11more static fixes (me)antirez1-6/+13
2005-03-11tons of static var fixes...antirez1-14/+22
2005-03-11static variables supportantirez1-23/+113
2005-03-10lrange command (me)antirez1-28/+80
2005-03-10Some fix to bench.tcl to make it able to run in Tcl7.6.antirez1-1/+14
2005-03-09[linsert] command added (Clemens Hintze).antirez1-2/+83
2005-03-09An initial [format] command.antirez1-2/+78
2005-03-08Did some fix in jimsh.c, exported some more API function to setantirez1-3/+30
2005-03-08JIM_VERSION is to be an integer value which we present as MAJOR.MINOR topatthoyts1-9/+8
2005-03-08Added [info patchlevel] and setup argv0 and argv variables in jimsh.patthoyts1-7/+5
2005-03-08aesthetic changes to source code (SS)antirez1-175/+80
2005-03-08Removed an useless #if0 ... #endif block of code.antirez1-42/+1
2005-03-08Info exists + tests (Clemens Hintze).antirez1-4/+15
2005-03-08Applied patch about unset a(x) against non existing 'a' variableantirez1-17/+6
2005-03-07Fixed a memory leak introduced with the last callframe caching codeantirez1-1/+3
2005-03-07Faster procedure calls (obtained caching the hashtable, and withantirez1-18/+48
2005-03-07Added "increasing", "decreasing", "ascii", "nocase" optionsantirez1-10/+53