- Mar 05, 2020
-
-
Steve Bennett authored
To warn of Y2038 problems, and suggest use of -D__MINGW_USE_VC2005_COMPAT on mingw32. Do this instead of the previous runtime test. Add -D__MINGW_USE_VC2005_COMPAT to the appveyor build. Fixes msteveb/jimtcl#145 Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Previously we stored lastCollectTime as time_t, but to support more easily enabling 64 bit vs 32 bit time_t, convert this to be JimClock() compatible (64 bit milliseconds). Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Mar 04, 2020
-
-
Steve Bennett authored
Add a note in the documentation for clock that some systems use 32-bit time_t and are thus not year 2038 compliant. Also add a test to catch this in clock.test Reported-by:
dbohdan <dbohdan@dbohdan.com> Signed-off-by:
Steve Bennett <steveb@workware.net.au>
-
- Feb 18, 2020
-
-
Antonio Borneo authored
Fix few typos in the documentation Signed-off-by:Antonio Borneo <borneo.antonio@gmail.com>
-
Antonio Borneo authored
When executing "exec.test" under valgrind, it reports several warning messages Warning: invalid file descriptor -1 in syscall close() Add proper check around close() Signed-off-by:Antonio Borneo <borneo.antonio@gmail.com>
-
- Feb 13, 2020
-
-
Steve Bennett authored
Linking with -ljim may need additional libraries Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Feb 06, 2020
-
-
- Jan 22, 2020
-
-
Steve Bennett authored
Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Dec 30, 2019
-
-
Steve Bennett authored
Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Dec 13, 2019
-
-
Steve Bennett authored
Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Should return the given return code, not JIM_RETURN (2) Reported-by:
dbohdan <dbohdan@dbohdan.com> Signed-off-by:
Steve Bennett <steveb@workware.net.au>
-
- Nov 30, 2019
-
-
Steve Bennett authored
If the interp result contains embedded nulls, print the full result. Reported-by:
dbohdan <dbohdan@dbohdan.com> Signed-off-by:
Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Reported-by:
dbohdan <dbohdan@dbohdan.com> Signed-off-by:
Steve Bennett <steveb@workware.net.au>
-
- Nov 20, 2019
-
-
Steve Bennett authored
Update documentation to indicate v0.79 and update Tcl_shipped.html Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Nov 15, 2019
-
-
Steve Bennett authored
To ensure that linenoise.c can build, even for strict c89 Add cc-check-inline in autosetup/jim-misc.auto Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Keep newer libssl happy Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Nov 14, 2019
-
-
Steve Bennett authored
If building out-of-tree, the jsmn/ directory may not exist. So create it during configure Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Nov 12, 2019
-
-
Steve Bennett authored
set-only e.g. to disable echo on stdin: stdin tty echo 0 This allows disabling echo while otherwise keeping cooked mode. Setting input to cooked or raw will overwrite this setting Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
It can be useful for extensions to know the size of integers Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Nov 11, 2019
-
-
dbohdan authored
-
- Nov 09, 2019
-
-
Steve Bennett authored
Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Using the jsmn library for decoding. Based on the original implementation by Svyatoslav Mishyn <juef@openmailbox.org> Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
This will be used to add json decode support From: https://github.com/zserge/jsmn , v1.0.0 Signed-off-by:
Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Move some remaining data to the read-only segment Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Nov 08, 2019
-
-
dbohdan authored
-
dbohdan authored
-
dbohdan authored
Using only --full will ignore ssl if the ssl library isn't found. By enabling it explicitly, we will get an error if not found.
-
Steve Bennett authored
and Jim_FreeHashTable() Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Nov 06, 2019
-
-
Steve Bennett authored
Rather than listing the build rules for each shared object (loadable module) in the Makefile template, generate the build rules in configure. Also, if an extension is configured as a module, any automatic dependencies required by the extension are configured as modules by default. Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
This command no longer exists in Jim Tcl, so remove it from the documentation. Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
If an expression returns (e.g.), break, continue or exit, that return code should be propagated, the same it is for [expr {}] Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Nov 01, 2019
-
-
Steve Bennett authored
Internally bytes were being counted rather than characters Reported-by:
dbohdan <dbohdan@dbohdan.com> Signed-off-by:
Steve Bennett <steveb@workware.net.au>
-
- Oct 30, 2019
-
-
Steve Bennett authored
Commit fe8bab1c accidentally moved the SO_REUSEADDR after bind() where it does no good. Move it back to before bind() Signed-off-by:
Steve Bennett <steveb@workware.net.au>
-
- Oct 28, 2019
-
-
Steve Bennett authored
Use utf8_charlen() rather than utf8_tounicode() Note that utf8_charlen() now returns 1 instead of -1 for an invalid utf-8 start byte. Reported-by:
dbohdan <dbohdan@dbohdan.com> Signed-off-by:
Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
The calculation of the end index was wrong. Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Oct 27, 2019
-
-
Steve Bennett authored
Not byte indices Reported-by:
dbohdan <dbohdan@dbohdan.com> Signed-off-by:
Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Not a byte index Reported-by:
dbohdan <dbohdan@dbohdan.com> Signed-off-by:
Steve Bennett <steveb@workware.net.au>
-
- Oct 18, 2019
-
-
Steve Bennett authored
This subcommand was missing as it wasn't part of the original Tcl 6.7 Signed-off-by:Steve Bennett <steveb@workware.net.au>
-