summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)AuthorFilesLines
2018-05-1342488: test cases for 42369 and address some issues in the codeOliver Kiddle1-0/+4
2018-05-13Nelson H. F. Beebe: 19597 (rebased 42369): return Inf, NaN etc from floating ↵Oliver Kiddle1-0/+5
point operations instead of errors to allow non-stop IEEE 754 arithmetic
2018-05-1342760: move stack variable outside while loop scope as it is accessed in the ↵Oliver Kiddle1-0/+5
while condition
2018-05-11unposted: remove mysterious excrescence in ChangeLogPeter Stephenson1-2/+0
2018-05-1142185: safety when removing separators in completiondana1-0/+3
2018-05-1142101 (tweaked): assigning shell status to array was brokendana1-0/+7
2018-05-0842752: enhance git external alias completionPeter Stephenson1-0/+3
If alias expands to !cmd-name, complete as a normal command line after cmd-name.
2018-05-0842751: Protect shell status in ZLE timed function handler.Peter Stephenson1-0/+5
Otherwise status from sched and other asynchronous functions could escape back to the main shell.
2018-05-0242740: Teach _systat about the 'zarc' screenEitan Adler1-0/+3
2018-05-0242732: Add several more entries to ifconfigEitan Adler1-0/+3
2018-05-0242743: update vorbis-tools completion and include vorbiscomment with the restOliver Kiddle1-0/+5
2018-05-01unposted (branch fork_early): Fork early for pipelines.Peter Stephenson1-0/+8
If executing a command not at the end of a pipeline, and not optimised in the calling code, we can fork before "prefork" substitutions, at the same point as for background commands. Move fork before our preliminary scan of arguments to find a command: in the cases of early fork we don't need this information before forking. Ensure we _exit if forked in execcmd_exec(). Rationalise use of forks and pipes. Ensure we _exit instead of returning from execcmd_exec() if we have forked. Before the optimisation code after the fork always ran to the check at the end, but that code is overkill for the logic between the early fork and the existing one. Remove old workaround to fork in caller of execcmd for current shell constructs as no longer needed with early fork below. Close input of newly created pipe on fork (destined for RHS of pipe which we never execute): this replaces a workaround from zsh-workers/32171, commit 9887fc3d7b. Set last1 on early fork as needed by some instances of shell constructs on LHS of pipeline to know they are exiting.
2018-04-2942730: Complete the options for rmdirMatthew Martin1-0/+3
2018-04-2942729: update df completion for [DFNO]BSDMatthew Martin1-0/+3
2018-04-2942676: deal with system specific arguments in dd completionOliver Kiddle1-1/+4
2018-04-2942728: update options in libtiff tools completion and add handling for tiff2pdfOliver Kiddle1-0/+5
2018-04-2947201: fix 42355 for multiple backslashesRicardo Giorni1-0/+4
2018-04-26c.f. 42726: Back off fg and bg tests.Peter Stephenson1-0/+5
This is too hard to make robust. Problems include - Reading input in different places causes lines to appear and disappear - There is no easy way to sequence the asynchronous operations following bg. - Response to job control of user commands on some OSes (MacOS, for example) is unpredicatble.
2018-04-2542722: Replace ed with dc in fg/bg tests.Peter Stephenson1-0/+3
This should be even simpler. Also more fix ups for failed pattern diffs.
2018-04-25unposted: Correct process substitution buffer size in the PATH_DEV_FD codepath.Daniel Shahaf1-0/+5
2018-04-2542714: Add fg and bg tests.Peter Stephenson1-0/+6
Use ed to get minimal user interaction without needing advanced terminal handling. Improve test output of failures of pattern differences.
2018-04-2442708: fix for process substitution.Peter Stephenson1-0/+7
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-2342705: Another safety fix for pgrp reclaiming.Peter Stephenson1-0/+3
Only do this if killpg(dead_pid, 0) returns -1, indicating the pgprp doesn't exist any more, else there is a race if other proceses have started using it.
2018-04-23Allow short loops with "while"Peter Stephenson1-0/+4
2018-04-2042684 (with extra comments): Fork early if in bg.Peter Stephenson1-0/+5
In execcmd the case of running the last command in a pipeline asynchronously for the purpose of & and &! is easy to work out, and we can avoid side effects and unnecessary execution time in the parent shell by forking earlier.
2018-04-1942686: Fix previous pgrp patch.Peter Stephenson1-0/+5
We shouldn't do any fix ups unless the process has actually exited.
2018-04-1742630: Improve process group handling in pipelines.Peter Stephenson1-0/+5
If process group leader exits, allow a newly forked process to become process leader. If a foreground job, reattach the shell to the terminal until that happens. Unblock signals when reading output for command subsitution so that we can do this reattaching immediately.
2018-04-17unposted: update version to 5.5.1-dev-0Peter Stephenson1-0/+4
2018-04-16unposted: Update for release 5.5.1.Peter Stephenson1-0/+5
2018-04-1642659: various completion option updatesOliver Kiddle1-0/+5
2018-04-1642658: allow compact form of option arguments to diffstatOliver Kiddle1-0/+3
2018-04-1642643, 42644: new cksum completionMatthew Martin1-0/+9
2018-04-1542650: fix 42156 for zero-sized terminalsBarton E. Schaefer1-0/+2
Also fix harmless no-op typo from hand-applying 42636 for previous commit.
2018-04-1542636: fix GLOB_DOTS for !(RM_STAR_SILENT)Barton E. Schaefer1-1/+5
Also fix paste-o in older log entry
2018-04-1342631: _pgrep: pkill: fix completion of signalsDaniel Hahler1-0/+5
This adds the signals after arguments are filtered according to $optchars.
2018-04-1242624 (plus test): avoid freeing memory that's still neededOliver Kiddle1-0/+6
This was occurring in a multiple function definition where a function name is duplicated.
2018-04-1142623: Add some extra quotes to previous commitPeter Stephenson1-0/+5
2018-04-1042618: support signal names from multiple include files.Benedikt Morbach1-0/+3
Needed for glibc starting with 2.25.
2018-04-10unposted: update dev version to 5.5-dev-0Peter Stephenson1-0/+4
2018-04-0942613: typo fix in _sspda1-0/+4
2018-04-08unposted: release zsh-5.5Peter Stephenson1-0/+4
2018-04-08c.f. 42499: tera torn: update twisted completion stub for new twist commandOliver Kiddle1-0/+5
2018-04-0742605: properly free the vi registers hashOliver Kiddle1-0/+3
2018-04-0742601: tidy up code for set -A/+A to not increment a NULL pointer and to be ↵Oliver Kiddle1-0/+3
more efficient
2018-04-0742607, CVE-2018-1100: check bounds on buffer in mail checkingOliver Kiddle1-0/+3
2018-04-0742600: error paths for _values leaked the exclusion list arrayOliver Kiddle1-0/+3
2018-04-0742597: plug memory leak found by coverityOliver Kiddle1-0/+2
2018-04-0742595: remove dead code flagged by coverityOliver Kiddle1-0/+2
2018-04-0742602: Update _gcc as of GCC 7.3.0 for generic options and x86Mikael Magnusson1-0/+5
2018-04-0742604: new completions for OpenBSD's signify and vmctlMatthew Martin1-0/+4