aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--TODO2
-rw-r--r--jim.c6
3 files changed, 7 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 296833d..3c1a3f8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-03-14 08:22 antirez
+
+ * ChangeLog, TODO, jim.c: [lmap] command.
+
2005-03-13 18:43 antirez
* ChangeLog, jim.h: Max nesting depth modified to 10000
diff --git a/TODO b/TODO
index 2667ed3..d6e83e3 100644
--- a/TODO
+++ b/TODO
@@ -18,6 +18,8 @@ CORE COMMANDS
- onleave command, executing something as soon as the current procedure
returns. With no arguments it returns the script set, with one appends
the onleave script. There should be a way to reset.
+- List commands to add: [lreverse], [squeeze]
+- Set commands: [lunion], [lintersect], and [ldifference]
COMMANDS NOT IN TCL BUT THAT SHOULD BE IN JIM
diff --git a/jim.c b/jim.c
index 4b54201..f566cd7 100644
--- a/jim.c
+++ b/jim.c
@@ -1,7 +1,7 @@
/* Jim - A small embeddable Tcl interpreter
* Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
*
- * $Id: jim.c,v 1.101 2005/03/14 07:22:02 antirez Exp $
+ * $Id: jim.c,v 1.102 2005/03/14 09:16:36 antirez Exp $
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -501,10 +501,6 @@ char *Jim_StrDupLen(char *s, int l)
* Time related functions
* ---------------------------------------------------------------------------*/
/* Returns microseconds of CPU used since start. */
-#if !(defined WIN32) || !(defined JIM_ANSIC)
-#include <sys/time.h>
-#endif
-
static jim_wide JimClock(void)
{
#if (defined WIN32) && !(defined JIM_ANSIC)