blob: 8568a7db09d29664d3954fbd48c11973ddd733ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
Changes since 2.3.3
1. src/slang.c: Use ptrdiff_t instead of long for the intrinsic
function prototypes. This is especially important for LLP64
systems such as MS windows.
2. src/slw32tty.c: The console mode was not getting reset by the
SLang_reset_tty function on windows systems
3. src/_slint.h: On windows sytems, use %lld and %llu for long long
integer formats
4. mkfiles/m32init.bat: Copy config file to module and slsh
subdirectories (windows-specific)
5. src/slposio.c: Added a window-specific tweak so that dup2 returns
the duped file descriptor. Also updated the regresssion tests
(window-specific).
6. src/slvideo.c: On windows, make calls to SetConsoleScreenBufferSize
and SetConsoleWindowInfo after calling CreateConsoleScreenBuffer so
that the newly created console will have the correct size. Also
INSTALL.pc was updated (windows-specific)
7. mkfiles/makefile.m32: Added install1 target to work with versions
of mingw make that cannot process the install target. Previously
this required editing the makefile (windows specific)
8. src/sltime.c: check for NULL return value from the ctime function
9. src/slang.ver: Removed the undefined symbol SLang_Rline_Quit,
which was causing a link error on Gentoo Linux (Michal Rostecki)
10. src/*.h: Updated the unicode tables from version 10.0.0 to 15.1.0
11. lib/timestamp.sl: The test for a leap year assumed a 1-based
month, not 0 based, causing it to fail
12. modules/chksum_sha2.c: Use memcpy to avoid type-punning warning
13. src/sldisply.c: Initialize the variables provided by the %g
operator to zero to not leak uninitialized data from the stack if
not set by %P. (Miroslav Lichvar)
14. modules/fcntl-module.c: Added fcntl_getpipe_sz and
fcntl_setpipe_sz functions to get and set the buffer size for pipes
15. src/sltoken.c, modules/json-module.c: Added UTF-16 surrogate handling to the
expand_escaped_string function and json module
16. src/{keymap.c,sltoken.c}: Removed unnecessary chack for a NULL
string, and corrected a potential memory leak (Miroslav Lichvar)
|