aboutsummaryrefslogtreecommitdiff
path: root/jim-posix.c
AgeCommit message (Collapse)AuthorFilesLines
2005-03-03Fixed a minor typo introduced with const-safeness patch.antirez1-6/+9
2005-03-02shell and library splitted. Now jim.c contains only theantirez1-0/+1
language implementation, while the shell is into jimsh.c, that is actually the first example of embedder of Jim. Important changes in jim.h to make Jim play well with extensions/embedders at the same time, and to deal with multiple files. Extensions now must define JIM_EXTENSION before to include jim.h, embedders must define JIM_EMBEDDED before to include jim.h.
2005-03-02removed JIM_EXTENSION define from extensions. Is no longerantirez1-2/+0
useful because only the core has to defile __JIM_CORE__. Added ctype.h in jim-win32com.c.
2005-03-01Indentation style changed to the new Jim standardantirez1-71/+71
4 spaces. No tabs used at all.
2005-02-27aritymin/aritymax information no longer used for C-coded commands.antirez1-5/+5
API changed accordingly.
2005-02-26Initial revisionantirez1-0/+112