Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 40470: make the test work also with ASCII collation | Jun-ichi Takimoto | 2017-02-01 | 1 | -16/+14 |
| | | | | | a few OSs (macOS and some versions of BSDs) use ASCII collation even if UTF-8 locale is in use | ||||
* | 40465: update methods to output $PWD in tests. | Peter Stephenson | 2017-01-30 | 2 | -15/+26 |
| | | | | | Use method from B01cd.tst which resolves symbolic links and matches against parameter in output. | ||||
* | 40440: Add $functions_source hash to zsh/parameter. | Peter Stephenson | 2017-01-28 | 2 | -9/+22 |
| | | | | This allows you to find out where a function was loaded from. | ||||
* | 40423: WARN_NESTED_VARS, conversion the other way | Peter Stephenson | 2017-01-26 | 1 | -1/+13 |
| | |||||
* | 40422: More WARN_NESTED_VAR cases. | Peter Stephenson | 2017-01-26 | 1 | -0/+12 |
| | | | | | Converting type when using a calling scope was broken in the original patch. | ||||
* | 40413: WARN_NESTED_VAR subscripted variable fix. | Peter Stephenson | 2017-01-25 | 1 | -0/+15 |
| | | | | | No warning needed on paramter that's created temporarily to help assignment. | ||||
* | posted: Make D07 recognize more spellings of pl_PL.UTF-8 | Mikael Magnusson | 2017-01-24 | 1 | -2/+2 |
| | | | | | FreeBSD and probably others use this spelling in locale -a output, while glibc uses the utf8 spelling. | ||||
* | 40391: Add WARN_NESTED_VAR option and functions -W. | Peter Stephenson | 2017-01-23 | 1 | -1/+56 |
| | | | | | These are companions to WARN_CREATED_GLOBAL, warning when a variable from an enclosing scope is altered. | ||||
* | 43080: a few more tests for autoload with absolute path | Peter Stephenson | 2017-01-18 | 1 | -0/+25 |
| | |||||
* | 40342: Add directory name cache for autoload file paths. | Peter Stephenson | 2017-01-12 | 1 | -0/+39 |
| | | | | | This renders "autoload /blah/blah/*" as efficient as use of fpath. | ||||
* | 40335: More care with autoload function path. | Peter Stephenson | 2017-01-12 | 1 | -0/+10 |
| | | | | | | If doing "autoload -X", the path present might actually be location of file containing the function with the autoload -X. Add an explicit flag to say it's a directory for autoload. | ||||
* | 40321: _arguments option groups | Oliver Kiddle | 2017-01-11 | 1 | -0/+77 |
| | |||||
* | Add features associated with autoloading a function using an absolute | Peter Stephenson | 2017-01-11 | 1 | -0/+89 |
| | | | | | | | | | | | | | path. -d defaults to normal fpath -r remembers the path without actually loading. May be combined with -d. -R does the same but it's an error if not found -X can now take a directory path: this is used to output not yet loaded functions that have an associated path. | ||||
* | 40306 with doc tweaks: Change behaviour expanding alias in () function ↵ | Peter Stephenson | 2017-01-10 | 1 | -0/+22 |
| | | | | | | | definition. Now an error unless the () is part of the same error as the name. Add ALIAS_FUNC_DEF option to allow it again. | ||||
* | 40269: handle option exclusion within current word for clumped options | Oliver Kiddle | 2017-01-05 | 1 | -6/+19 |
| | | | | This replaces the change made in 13999 with an alternative approach. | ||||
* | 40227: handle _arguments sets and rest arguments starting with a dash | Oliver Kiddle | 2017-01-04 | 1 | -9/+7 |
| | | | | | This is a new approach to the problem first covered by 39611: checking to see if an option-like argument belongs to one of the other sets. | ||||
* | 40226: tidy up some of the _arguments set code | Oliver Kiddle | 2017-01-04 | 1 | -2/+57 |
| | | | | | | Remove old code for applying explicit exclusions between sets which fixes some odd behaviour. Some struct members were unused. Also added some comments and test cases. | ||||
* | 40162: _arguments support for a match spec in combination with sets | Oliver Kiddle | 2016-12-22 | 1 | -0/+5 |
| | |||||
* | 40203: Resolve 'printf --' question from grandparent commit (thanks Chet). | Daniel Shahaf | 2016-12-16 | 1 | -2/+0 |
| | |||||
* | 40198: output of B02typeset differs when (( UID == 0 )) so do not attempt to ↵ | Barton E. Schaefer | 2016-12-15 | 1 | -5/+9 |
| | | | | redo that test in that case | ||||
* | 40179: fix handling of "printf -" and "printf --" | Barton E. Schaefer | 2016-12-14 | 1 | -0/+14 |
| | | | | unposted: regression test for 40179 / 37467 | ||||
* | 40139: tests: Convert comments to diagnostics; test backslashes. (after 40129) | Daniel Shahaf | 2016-12-10 | 1 | -10/+9 |
| | |||||
* | unposted: minor D07 typos | Peter Stephenson | 2016-12-09 | 1 | -2/+2 |
| | |||||
* | 40138: Move regex multibyte test. | Peter Stephenson | 2016-12-09 | 1 | -12/+16 |
| | | | | | | Put it last as it has an additional dependency. Output a failure message indicating this. | ||||
* | 40129: revert 39611, add code comments and test cases for _arguments | Oliver Kiddle | 2016-12-09 | 1 | -14/+237 |
| | |||||
* | 40110: attempt to fix test failures on Solaris | Barton E. Schaefer | 2016-12-06 | 2 | -2/+2 |
| | | | | | | B02typeset: ignore strerror text in test output, it differs by OS C02cond: discard stderr when looking for a path to the "mount" command | ||||
* | 40102: Use subdirectory for test I/O files | Peter Stephenson | 2016-12-05 | 2 | -9/+13 |
| | |||||
* | 40100: ERR_EXIT and ERR_RETURN test for anonymous functions. | Peter Stephenson | 2016-12-05 | 1 | -0/+11 |
| | | | | | | Should trigger on non-zero status at end of function even if behaviour is suppressed by code inside the function at the point the status is set. | ||||
* | Additional case for ERR_RETURN and ERR_EXIT. | Peter Stephenson | 2016-12-05 | 1 | -0/+17 |
| | | | | | Don't trigger just because status is non-zero at end of current shell group. | ||||
* | Extra case for ERR_RETURN and ERR_EXIT. | Peter Stephenson | 2016-12-05 | 1 | -0/+70 |
| | | | | | | Don't trigger just because status is non-zero at end of complex shell construct as this may be a case we've already suppressed. | ||||
* | 40088: atttempt to make interactive param test more robust | Peter Stephenson | 2016-12-04 | 1 | -3/+4 |
| | |||||
* | unposted: regression test for 40071 | Barton E. Schaefer | 2016-12-03 | 1 | -0/+6 |
| | |||||
* | 40068: Abort execution when setuid/setgid fail. | Daniel Shahaf | 2016-12-03 | 1 | -0/+10 |
| | | | | | | | | | | | The incumbent code would print an error message and continue execution with the previous uid/gid values, not even setting lastval: % UID=42 id -u; echo $? zsh: failed to change user ID: operation not permitted 1000 0 % | ||||
* | 40010: builtins: Say 'bad option: +x', not 'bad option: -x', when +x was passed. | Daniel Shahaf | 2016-11-28 | 1 | -0/+5 |
| | |||||
* | 39757 plus test: Fix completion under parenthetical directory names, broken ↵ | Daniel Shahaf | 2016-11-27 | 1 | -0/+3 |
| | | | | in 39412 | ||||
* | unposted: add test case for partial completion matching of options with ↵ | Oliver Kiddle | 2016-11-23 | 1 | -0/+6 |
| | | | | arguments | ||||
* | unposted: fix printf -v to an array without format string reuse | Oliver Kiddle | 2016-11-23 | 1 | -0/+6 |
| | |||||
* | 39993: Tests for 39981. | Oliver Kiddle | 2016-11-21 | 1 | -0/+11 |
| | |||||
* | 39986, 39989: improve handling of vi-repeat-change | Oliver Kiddle | 2016-11-20 | 1 | -3/+7 |
| | | | | | | Save previous vi change and throw away a new change that fails. Add zle -f vichange to allow shell widget to be a single change. Fix repeat of command where numeric arguments were multiplied. | ||||
* | 39995 (from 39977): Optimise string parameter assignment. | Peter Stephenson | 2016-11-20 | 1 | -0/+140 |
| | | | | | If setter is the standard one and string length is unchnaged we can copy into place. | ||||
* | 39915: whence: Honor PATH_DIRS option for arguments that start with './' or ↵ | Daniel Shahaf | 2016-11-17 | 1 | -0/+4 |
| | | | | | | '../'. While here, add some docstrings. | ||||
* | 39959: when repeating vi changes advance through the numbered killring registers | Oliver Kiddle | 2016-11-17 | 1 | -0/+15 |
| | | | | | Also fix numeric arguments with vi-repeat-change: and argument passed to the repeat replaces that previously saved with the change. | ||||
* | 39945: allow further tab presses to move on to menu completion even when ↵ | Oliver Kiddle | 2016-11-16 | 1 | -0/+61 |
| | | | | compstate[insert] is emptied | ||||
* | 39949: Special case for "-" in directory names. | Peter Stephenson | 2016-11-15 | 1 | -0/+8 |
| | | | | | It can be sh-tokenized to Dash to allow for appearing in ranges after substitution, so needs to be turned back to "-" in that case. | ||||
* | 39947: Additional test for array subscripts. | Peter Stephenson | 2016-11-15 | 1 | -0/+8 |
| | | | | | This checks out-of-range multiple subscripts with and without the (@) flag. | ||||
* | 39901: No EXIT trap on LHS of pipeline. | Peter Stephenson | 2016-11-10 | 1 | -0/+17 |
| | | | | | There is a special case if the LHS is a shell construct. Add unit tests for both cases. | ||||
* | 39870: ensure exit trap can always run | Peter Stephenson | 2016-11-08 | 1 | -0/+15 |
| | |||||
* | unposted: tests for 39839, 39844 | Barton E. Schaefer | 2016-11-05 | 1 | -0/+13 |
| | |||||
* | 39389: when printf -v is used with an array use separate elements each time ↵ | Oliver Kiddle | 2016-11-05 | 1 | -0/+6 |
| | | | | the format is reused | ||||
* | 39824: test case for 39811 (commit ae4c035c) | Barton E. Schaefer | 2016-11-03 | 1 | -0/+8 |
| |