summaryrefslogtreecommitdiff
path: root/Src/Modules
AgeCommit message (Collapse)AuthorFilesLines
2018-12-2443935: Reject too-large nanosecond values given to strftimedana1-1/+1
... and, in so doing, fix an error in the tests on 32-bit machines. The value for the new too-large test is changed slightly from the patch posted to the ML to make it test for the right thing on 32-bit machines as well.
2018-11-1943829: nearcolor.c: use double instead of floatJun-ichi Takimoto1-19/+19
2018-11-1543823: remove unnecessary metafy() in stattimeprint()Ivan Tkachenko1-3/+1
2018-11-1343800: Add nanosecond support to strftime built-indana1-18/+46
2018-11-0943791: File descriptor could be closed twice in cloneKamil Dudka1-1/+2
2018-11-0843805: make nearcolor module use the default colour rather than black as a ↵Oliver Kiddle1-3/+4
fallback
2018-11-08unposted: add usual copyright header to nearcolor module sourcesOliver Kiddle1-0/+29
2018-11-0543759: add support for true colour terminalsOliver Kiddle1-3/+5
2018-11-0543747: new module to map colours from hex triplets to the nearest matching ↵Oliver Kiddle2-0/+183
colour
2018-10-0843616: Various parameter setting and display fixes.Peter Stephenson2-22/+24
Mostly to do with typeset -p and tied variables and their interaction. Some general tied variable fixes.
2018-08-1343275: Add log2 to match funcdana1-0/+10
2018-08-0143227: fix memory leaks in term{cap,info}.cJun-ichi Takimoto2-20/+8
2018-07-3143219 (except term{cap,info}.c): fix several memory leaksJun-ichi Takimoto2-1/+5
2018-06-2043075: Support nanosecond-precision time formattingdana2-46/+22
* Teach ztrftime() %9. and %N for nanoseconds * Update prompt expansion to pass sub-second times for time formatting * Update zsh/stat to pass sub-second times for atime/mtime/ctime Patch heavily based on Oliver's earlier work @ workers/24059
2018-06-18433029: Testing signal return type is no longer neededEitan Adler1-1/+1
2018-06-1743039: Mark functions_source (et al.) for auto-loadingdana2-1/+2
2018-06-15users/23472: Add $sysparams[procsubstpid] to zsh/systemPeter Stephenson1-0/+4
2018-06-0642938: name argument to math_func is not unusedEitan Adler1-1/+1
2018-05-1342488: test cases for 42369 and address some issues in the codeOliver Kiddle1-34/+17
2018-05-13Nelson H. F. Beebe: 19597 (rebased 42369): return Inf, NaN etc from floating ↵Oliver Kiddle1-43/+0
point operations instead of errors to allow non-stop IEEE 754 arithmetic
2018-04-2442708: fix for process substitution.Peter Stephenson2-2/+2
Don't close associated file descriptors in the closem() tidy up function as they should remain visible to external processes. Override if about to exit. Unit test for the failing case: note this relies on the existence of /proc/self/fd or equivalent.
2018-04-0742605: properly free the vi registers hashOliver Kiddle1-1/+2
2018-03-24unposted: add 'static' to a file-local variableJun-ichi Takimoto1-1/+1
2018-03-1842469: necessary repairs to 42465 found by "make check"Stephane Chazelas1-2/+1
2018-03-1542465: Pass up error status from readoutput().Stephane Chazelas1-1/+2
This improves the consistency of error reporting from $(...) constructs.
2018-01-2042243: Free stuff properly in zsh/pcre moduleMikael Magnusson1-1/+34
2018-01-0442188: Close flock descriptor in failure casesSebastian Gniazdowski1-3/+11
2017-09-1141666: zpty compatibility for OpenBSDThierry Ghelew1-1/+6
2017-08-1441542: Fix pcre logic for extracting matched parentheses.Peter Stephenson1-25/+43
When we went off the end of the array but measured the length implicitly, we got lucky before. After 41308 we were looking up lengths in stale memory. Rename some variables, clean up the logic, be easier to understand. Add tests.
2017-07-0341375: GDBM interface bug fixesSebastian Gniazdowski1-63/+93
2017-06-2241308 (tweaked): behaviour of PCRE with NUL bytesPhil Pennock1-11/+26
2017-06-1241244: Add zmodload -s option.Peter Stephenson1-1/+1
Doesn't complain if module is unavailable, but prints more obscure errors. Use existing low-level silent flag by passing through intermediate module loading hierarchy.
2017-05-2841151: propagate flags when creating new parameterSebastian Gniazdowski1-1/+1
2017-05-2841153: finish module setup only after all error conditions have been checkedSebastian Gniazdowski1-4/+4
2017-05-2441146: careul in GDBM freeing strings with embedded nullsSebastian Gniazdowski1-10/+29
2017-05-2440898: fix GDBM error handlingSebastian Gniazdowski1-1/+2
2017-05-2341142: Ensure close-on-exec is passed to moved file descriptorStephane Chazelas1-10/+20
2017-03-10unposted: silence warnings on CygwinJun-ichi Takimoto1-1/+2
On Cygwin, h_name in struct hostent is 'const char*'
2017-03-0540726: add "zcurses resize" for sane terminal size changeSebastian Gniazdowski1-0/+69
2017-03-0340170: Fix up error resetting in curses module.Sebastian Gniazdowski1-23/+12
Update comment to remove confusion. The comment was based on incorrecto expectations, and the problems referred to seem to be fixed.
2017-03-0240681: strftime builtin should return 1 if ztrftime() returns -1Jun-ichi Takimoto1-2/+6
2017-02-2640650: redo 40508 and 40626 with comments explaining what is actually going onBarton E. Schaefer1-9/+25
2017-02-26Revert 40626 which broke tests.Daniel Shahaf1-2/+2
2017-02-2540626: Make $options re-settable.Daniel Shahaf1-2/+2
Follow-up to 40508. Reported-by: James McGlashan
2017-02-1740558, 40562: General improvements to zsh/db/gdbm moduleSebastian Gniazdowski2-72/+437
2017-02-1340524: do not free a null arrayBarton E. Schaefer1-1/+2
2017-02-0840508: Make $functions re-settable.Daniel Shahaf1-2/+2
2017-02-0740507: Remove extraneous null creating GDBM recordsSebastian Gniazdowski1-6/+6
2017-02-0240486: Don't warn on creation of MATCH etc. in regex.Peter Stephenson1-4/+4
This because they are created implicitly rather than by explicit user request, so the warning may not be useful.
2017-02-0140483 (cf. Eric Freese: 40482): Remove zpty exit hook from forked processesBarton E. Schaefer1-0/+2