aboutsummaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2010-01-24 10:16:56 +1000
committerSteve Bennett <steveb@workware.net.au>2010-10-15 11:02:38 +1000
commitc7527a0ba18bccd34d9653f681bad80c25a2e9af (patch)
tree7ef8b256d2d5c1233fffad016dff558d867679d3 /TODO
parent6e7b3dd60ce7b54e0937fef48b889296fdcfab09 (diff)
downloadjimtcl-c7527a0ba18bccd34d9653f681bad80c25a2e9af.zip
jimtcl-c7527a0ba18bccd34d9653f681bad80c25a2e9af.tar.gz
jimtcl-c7527a0ba18bccd34d9653f681bad80c25a2e9af.tar.bz2
Simplify use of eventloop
Just assume direct static linking for now
Diffstat (limited to 'TODO')
-rw-r--r--TODO4
1 files changed, 2 insertions, 2 deletions
diff --git a/TODO b/TODO
index ff7cc06..0365f15 100644
--- a/TODO
+++ b/TODO
@@ -7,7 +7,7 @@ CORE LANGUAGE FEATURES
CORE COMMANDS
- All the missing standard core commands not related to I/O, namespaces, ...
-- The current [expr] needs a lot of work, expecially operators && and ||
+- The current [expr] needs a lot of work, especially operators && and ||
are not lazy. Math functions are not present but probably will never
be added as expr functions, but as Tcl commands, like [sin], [cos] and
so on.
@@ -70,7 +70,7 @@ IMPLEMENTATION ISSUES
equivalent) handle in a list inside the interpreter structure. When
the interpreter is freed all this handles should be closed with dlclose().
- *AssocData() function should allow to specify a delProc C function like
- in the Tcl API. When the interpreter is destroied all the delProc functions
+ in the Tcl API. When the interpreter is destroyed all the delProc functions
should be called to free the memory before to free the interpreter.
- Convert dicts from lists directly without to pass from the string repr.