Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-11-14 | 31982: detection of floating point constants was problematic. | Peter Stephenson | 1 | -0/+8 | |
Remove the cause and fix the original problem with floating point numbers with leading zeros (users/17445) a different way. | |||||
2013-11-07 | 31937: zle -Fw uses widget semantics for file descriptor handler | Peter Stephenson | 1 | -2/+2 | |
2013-11-06 | unposted: updates for 4.0.2-test-1. | Peter Stephenson | 1 | -0/+1 | |
Update references to 4.0.2 to 4.0.3. Additional mod_export declarations. Additions to .distfiles. | |||||
2013-10-26 | Merge overlapping ChangeLog entries | Barton E. Schaefer | 1 | -0/+6 | |
2013-10-26 | 31906: fix race-condition interaction of $pipestatus with job control | Barton E. Schaefer | 1 | -2/+8 | |
printjob() should not reference oldjobtab for job numbers unless it is being called from bin_fg(). printjob() also must not attempt to update pipestats when called from bin_fg(). acquire_pgrp() should not loop infintely if the shell is not interactive. Update the $pipestatus stress test so that it also exercises the oldjobtab repair. | |||||
2013-10-27 | 31902: rationalise use of gamma function. | Jun T | 1 | -0/+6 | |
Make zsh/mathfunc consistent across systems and use tgamma() where available | |||||
2013-10-24 | 31889: tests for disable -p | Peter Stephenson | 1 | -0/+58 | |
2013-10-24 | 31888: Add another test for pipestatus. | Peter Stephenson | 1 | -0/+7 | |
This one was reliably failing before the fix, see zsh-workers-31870 | |||||
2013-10-24 | 31884: Make new pipestatus test implementation proof. | Peter Stephenson | 1 | -2/+2 | |
It seems uniq's vary in the number of spaces they output. | |||||
2013-10-23 | 31879 plus misc.: improve $pipestatus handling and add a test for it | Barton E. Schaefer | 1 | -0/+11 | |
2013-10-11 | 31805: Add $patchars and $dis_patchars to zsh/parameter module | Mikael Magnusson | 1 | -0/+2 | |
2013-10-10 | 31810: tests for simple XTRACE output from conditions | Peter Stephenson | 1 | -0/+9 | |
2013-10-06 | users:18023: Add PIPEFAIL option | Peter Stephenson | 1 | -0/+15 | |
2013-09-06 | 31706: standardize handling of "test ! <x> <y> <z>" | Peter Stephenson | 1 | -1/+5 | |
2013-09-04 | 31696: In "test" No One Can Hear If You Shriek. | Peter Stephenson | 1 | -0/+21 | |
Treat ! as a string in "test ! -a ..." and "test ! -o ...". | |||||
2013-08-26 | 31672: Add test that was failing and fix zpty set-up race | Peter Stephenson | 1 | -1/+9 | |
2013-08-25 | 31665: zpty should attach terminal on slave. | Peter Stephenson | 2 | -0/+21 | |
Also add test. | |||||
2013-07-19 | 31536 with additions: Fix hang in previous process substitution fix. | Peter Stephenson | 1 | -0/+8 | |
Close applicable file descriptors when waiting for a job. | |||||
2013-03-10 | 31141: Tighten NO_CLOBBER restrictions on {fd} syntax | Peter Stephenson | 1 | -0/+11 | |
to apply only if $fd is exactly an fd and nothing else. | |||||
2013-03-05 | users/17665: add FORCE_FLOAT option | Peter Stephenson | 1 | -0/+15 | |
2013-02-12 | 31041: add support for testing line editor widgets from the test suite | Oliver Kiddle | 2 | -5/+48 | |
2013-01-22 | 30993: fix parameter modifier crash with :wq on empty string | Peter Stephenson | 1 | -0/+7 | |
2012-12-21 | this prevent process-based features from working in their arguments | Peter Stephenson | 1 | -0/+19 | |
2012-12-13 | 30876: fix obscure failures to propagate non-zero status | Peter Stephenson | 2 | -2/+13 | |
from optimised simple commands within lists | |||||
2012-12-08 | users/17445: fix handling of leading zeroes in floating point | Bart Schaefer | 1 | -0/+10 | |
2012-11-15 | 30789: Add CONTINUE_ON_ERROR for old behaviour. | Peter Stephenson | 1 | -6/+6 | |
New behaviour is for scripts to exit on error instead of returning to top level and executing the next command. | |||||
2012-10-11 | 30726: make shell options passed to emulate stick along with the emulation | Peter Stephenson | 1 | -0/+46 | |
2012-10-07 | 30722: fix some cases where emulations or options were not propagated properly | Peter Stephenson | 1 | -0/+25 | |
from the emulate command | |||||
2012-10-07 | 30718: emulate command evaluations should apply sticky emulation | Peter Stephenson | 1 | -0/+17 | |
to autoloads, too | |||||
2012-10-03 | users/17310: we can't treat < after [ as a normal character. | Peter Stephenson | 2 | -20/+3 | |
Document problem and test for case that needs to work. | |||||
2012-10-02 | users/17304: angle brackets aren't associated with special parsing | Peter Stephenson | 1 | -0/+20 | |
inside square brackets | |||||
2012-09-11 | 30647, 30649: allow underscores in numeric constants | Peter Stephenson | 1 | -0/+23 | |
2012-08-16 | 30169: repeat "typeset -T" with same two first arguments is not an error | Peter Stephenson | 1 | -0/+9 | |
2012-05-01 | users/17046: don't count too many elements when splitting quoted parameter | Peter Stephenson | 1 | -1/+15 | |
substitution on null parameter | |||||
2012-04-22 | 30439: ${...:*...} with nonexistent or non-array after * | Peter Stephenson | 1 | -0/+5 | |
should return no results | |||||
2012-04-22 | 30431 with typo in _typeset fix: | Peter Stephenson | 1 | -0/+23 | |
add ${...:|...} and ${...:*...} operators, as documented | |||||
2012-04-16 | 30413: (q-) parameter flag should quote null string | Peter Stephenson | 1 | -0/+7 | |
(q-q) etc. should be treated as errors | |||||
2012-04-10 | 30383, users/16991 (Vaclav), users/17000: Improve speed of arrayuniq() by | Bart Schaefer | 1 | -0/+10 | |
implementing a hash seive algorithm; add test to exercise it. | |||||
2012-02-29 | 30299: "$*" was split with SHWORDSPLIT if IFS was empty or unset | Peter Stephenson | 1 | -0/+10 | |
2012-02-26 | 30270: don't need errors when testing to see if mtime test will work | Peter Stephenson | 1 | -1/+1 | |
2012-02-22 | 30242: Tests for ${...=...} in POSIX emulation | Bart Schaefer | 1 | -1/+4 | |
2012-02-19 | unposted: 4.3.16 | Peter Stephenson | 1 | -0/+1 | |
2012-02-12 | 30181, plus rename of PF_* flags to PREFORK_*: | Peter Stephenson | 1 | -0/+14 | |
Pass sh-wordsplitting instructions to paramsubst() using flags, avoiding side effects of explicitly setting and unsetting the SHWORDSPLIT option. | |||||
2012-01-31 | Felipe: 30158: compgen test not useful with current bashcompinit | Peter Stephenson | 3 | -38/+0 | |
2011-12-30 | 30048: C02cond.ztst: Avoid [[ -N ... ]] on file-systems mounted `noatime' | Frank Terbeck | 1 | -0/+3 | |
2011-12-08 | 29955++: IGNORE_CLOSE_BRACES option | Peter Stephenson | 1 | -0/+15 | |
2011-12-08 | 29928: belated commit to fix OpenBSD redirection test | Peter Stephenson | 1 | -2/+3 | |
2011-12-02 | unposted: fix documentation for "*" test output syntax | Peter Stephenson | 1 | -2/+2 | |
2011-12-02 | unposted: fix documentation for "*" test output syntax | Peter Stephenson | 1 | -7/+7 | |
2011-12-02 | unposted: fix documentation for "*" test output syntax | Peter Stephenson | 1 | -4/+4 | |