Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 42809: slightly improve 'compset -q' | Jun-ichi Takimoto | 2018-05-25 | 2 | -3/+10 |
| | |||||
* | 42806: fix shutdown completion where options were lost due to args= ↵ | Oliver Kiddle | 2018-05-19 | 2 | -2/+5 |
| | | | | assignment where args+= was needed | ||||
* | 42803: handle Linux and the the BSDs in netstat completion | Oliver Kiddle | 2018-05-19 | 3 | -61/+342 |
| | |||||
* | 42790: make [[:blank:]] match non-ASCII blanks | Stephane Chazelas | 2018-05-17 | 5 | -4/+36 |
| | |||||
* | 42784: complete -s and -x options to the functions builtin | Oliver Kiddle | 2018-05-17 | 2 | -4/+15 |
| | |||||
* | 42793: Always define FDT_PROC_SUBST even if not needed. | Peter Stephenson | 2018-05-17 | 3 | -8/+6 |
| | | | | This avoids proliferating #ifdef's. | ||||
* | 42785: Allow redefining math function to work silently. | Peter Stephenson | 2018-05-17 | 2 | -9/+9 |
| | | | | | | Previously it failed with an error message that the function was already defined. This is inconsistent with most other aspects of shell usage. | ||||
* | 42297: (e) subscript flag needs extra work with scalars | dana | 2018-05-14 | 3 | -3/+41 |
| | |||||
* | 42234: Stephane: don't kill a process if not running. | Peter Stephenson | 2018-05-14 | 1 | -3/+15 |
| | | | | This could happen when kiiling a job. The processs might be reused. | ||||
* | 42488: test cases for 42369 and address some issues in the code | Oliver Kiddle | 2018-05-13 | 7 | -56/+95 |
| | |||||
* | Nelson H. F. Beebe: 19597 (rebased 42369): return Inf, NaN etc from floating ↵ | Oliver Kiddle | 2018-05-13 | 5 | -51/+64 |
| | | | | point operations instead of errors to allow non-stop IEEE 754 arithmetic | ||||
* | 42760: move stack variable outside while loop scope as it is accessed in the ↵ | Oliver Kiddle | 2018-05-13 | 2 | -1/+6 |
| | | | | while condition | ||||
* | unposted: remove mysterious excrescence in ChangeLog | Peter Stephenson | 2018-05-11 | 1 | -2/+0 |
| | |||||
* | 42185: safety when removing separators in completion | dana | 2018-05-11 | 2 | -1/+5 |
| | |||||
* | 42101 (tweaked): assigning shell status to array was broken | dana | 2018-05-11 | 3 | -2/+48 |
| | |||||
* | 42752: enhance git external alias completion | Peter Stephenson | 2018-05-08 | 2 | -1/+7 |
| | | | | | If alias expands to !cmd-name, complete as a normal command line after cmd-name. | ||||
* | 42751: Protect shell status in ZLE timed function handler. | Peter Stephenson | 2018-05-08 | 2 | -0/+9 |
| | | | | | Otherwise status from sched and other asynchronous functions could escape back to the main shell. | ||||
* | 42740: Teach _systat about the 'zarc' screen | Eitan Adler | 2018-05-02 | 2 | -0/+4 |
| | |||||
* | 42732: Add several more entries to ifconfig | Eitan Adler | 2018-05-02 | 2 | -2/+10 |
| | |||||
* | 42743: update vorbis-tools completion and include vorbiscomment with the rest | Oliver Kiddle | 2018-05-02 | 3 | -72/+117 |
| | |||||
* | unposted (branch fork_early): Fork early for pipelines. | Peter Stephenson | 2018-05-01 | 2 | -82/+71 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | 42730: Complete the options for rmdir | Matthew Martin | 2018-04-29 | 3 | -1/+27 |
| | |||||
* | 42729: update df completion for [DFNO]BSD | Matthew Martin | 2018-04-29 | 2 | -13/+47 |
| | |||||
* | 42676: deal with system specific arguments in dd completion | Oliver Kiddle | 2018-04-29 | 2 | -16/+101 |
| | |||||
* | 42728: update options in libtiff tools completion and add handling for tiff2pdf | Oliver Kiddle | 2018-04-29 | 2 | -69/+135 |
| | |||||
* | 47201: fix 42355 for multiple backslashes | Ricardo Giorni | 2018-04-29 | 3 | -6/+34 |
| | |||||
* | c.f. 42726: Back off fg and bg tests. | Peter Stephenson | 2018-04-26 | 2 | -42/+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. | ||||
* | 42722: Replace ed with dc in fg/bg tests. | Peter Stephenson | 2018-04-25 | 3 | -33/+29 |
| | | | | | | This should be even simpler. Also more fix ups for failed pattern diffs. | ||||
* | unposted: Correct process substitution buffer size in the PATH_DEV_FD codepath. | Daniel Shahaf | 2018-04-25 | 2 | -1/+6 |
| | |||||
* | 42714: Add fg and bg tests. | Peter Stephenson | 2018-04-25 | 3 | -6/+89 |
| | | | | | | | Use ed to get minimal user interaction without needing advanced terminal handling. Improve test output of failures of pattern differences. | ||||
* | 42708: fix for process substitution. | Peter Stephenson | 2018-04-24 | 5 | -10/+32 |
| | | | | | | | | | 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. | ||||
* | 42705: Another safety fix for pgrp reclaiming. | Peter Stephenson | 2018-04-23 | 2 | -1/+5 |
| | | | | | | 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. | ||||
* | Allow short loops with "while" | Peter Stephenson | 2018-04-23 | 2 | -1/+7 |
| | |||||
* | 42684 (with extra comments): Fork early if in bg. | Peter Stephenson | 2018-04-20 | 2 | -95/+140 |
| | | | | | | | 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. | ||||
* | 42686: Fix previous pgrp patch. | Peter Stephenson | 2018-04-19 | 2 | -1/+7 |
| | | | | | We shouldn't do any fix ups unless the process has actually exited. | ||||
* | 42630: Improve process group handling in pipelines. | Peter Stephenson | 2018-04-17 | 3 | -1/+34 |
| | | | | | | | | | 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. | ||||
* | unposted: update version to 5.5.1-dev-0 | Peter Stephenson | 2018-04-17 | 2 | -2/+6 |
| | |||||
* | unposted: Update for release 5.5.1. zsh-5.5.1 | Peter Stephenson | 2018-04-16 | 5 | -5/+17 |
| | |||||
* | 42659: various completion option updates | Oliver Kiddle | 2018-04-16 | 8 | -25/+84 |
| | |||||
* | 42658: allow compact form of option arguments to diffstat | Oliver Kiddle | 2018-04-16 | 2 | -10/+13 |
| | |||||
* | 42643, 42644: new cksum completion | Matthew Martin | 2018-04-16 | 2 | -0/+76 |
| | |||||
* | 42642 (tweaked for Solaris): OpenBSD chown does not support -f and dragonfly ↵ | Matthew Martin | 2018-04-16 | 1 | -2/+2 |
| | | | | has -x | ||||
* | 42650: fix 42156 for zero-sized terminals | Barton E. Schaefer | 2018-04-15 | 2 | -5/+9 |
| | | | | Also fix harmless no-op typo from hand-applying 42636 for previous commit. | ||||
* | 42636: fix GLOB_DOTS for !(RM_STAR_SILENT) | Barton E. Schaefer | 2018-04-15 | 2 | -5/+10 |
| | | | | Also fix paste-o in older log entry | ||||
* | 42631: _pgrep: pkill: fix completion of signals | Daniel Hahler | 2018-04-13 | 2 | -3/+10 |
| | | | | | This adds the signals after arguments are filtered according to $optchars. | ||||
* | 42624 (plus test): avoid freeing memory that's still needed | Oliver Kiddle | 2018-04-12 | 3 | -5/+25 |
| | | | | | This was occurring in a multiple function definition where a function name is duplicated. | ||||
* | 42623: Add some extra quotes to previous commit | Peter Stephenson | 2018-04-11 | 2 | -3/+8 |
| | |||||
* | 42618: support signal names from multiple include files. | Benedikt Morbach | 2018-04-10 | 2 | -5/+11 |
| | | | | Needed for glibc starting with 2.25. | ||||
* | unposted: update dev version to 5.5-dev-0 | Peter Stephenson | 2018-04-10 | 2 | -2/+6 |
| | |||||
* | 42613: typo fix in _ss | pda | 2018-04-09 | 2 | -1/+5 |
| |