Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 34892 (slightly tweaked): math evaluation fix | Peter Stephenson | 2015-04-15 | 1 | -1/+4 |
| | | | | | An empty expression resulting from substitution includes a Nularg, which needs handling the same as an empty string. | ||||
* | 34887: Fix POSIX_BUILTINS with assignment. | Peter Stephenson | 2015-04-15 | 1 | -0/+13 |
| | | | | | | | | | | | In the form var=val command special-builtin-or-func the var is restored after execution, unlike the case where "command" is absent. Clear up case in code that handles this. Add tests. | ||||
* | 34781: add implicit space after alias expansion of tokens that form words ↵ | Barton E. Schaefer | 2015-03-28 | 1 | -1/+1 |
| | | | | | | without spacing fixes crash when using completion immediately following such an alias | ||||
* | 34804: refine POSIX_ALIAS change to preserve old behavior of [[ ]] conditionals | Barton E. Schaefer | 2015-03-28 | 1 | -0/+4 |
| | |||||
* | 34787: Add more history tests | Peter Stephenson | 2015-03-27 | 1 | -0/+41 |
| | |||||
* | 34779: tests for 34776 | Barton E. Schaefer | 2015-03-25 | 2 | -1/+25 |
| | |||||
* | 34774: fix %prep and use read from a no-op pipe to force wait for the timeout | Barton E. Schaefer | 2015-03-25 | 2 | -2/+2 |
| | |||||
* | 34772: add new test suite file for history; fix "read" usage in comptest | Barton E. Schaefer | 2015-03-23 | 2 | -1/+20 |
| | |||||
* | 34753: work around NFS problem in tests. | Peter Stephenson | 2015-03-20 | 1 | -9/+29 |
| | | | | | Use tmp directory if it helps us check file time comparisons. If it doesn't we're no worse off than we were. | ||||
* | 34734: further aliasing adjustments and doc | Barton E. Schaefer | 2015-03-18 | 1 | -1/+1 |
| | | | | | | | | restrict token aliasing (34641) to global aliases; tighten up POSIX_ALIASES to better match spec; update Aliasing doc to cover this and clarify older behavior 2015-03-18 Peter Stephenson <p.stephenson@samsung.com> * 34723: configure.ac: turn off fixed site function directory if | ||||
* | Missing test for alias fix | Peter Stephenson | 2015-03-05 | 1 | -0/+15 |
| | |||||
* | 34606: fix up nested arithmetic substitution | Peter Stephenson | 2015-02-22 | 1 | -0/+8 |
| | | | | | | | | Arithmetic within a parameter substitution is a special case that needs fixing with the introduction of the new Inparmath token. Add test. | ||||
* | 34587: ensure multibyte characters don't overflow. | Peter Stephenson | 2015-02-20 | 1 | -5/+15 |
| | | | | | | They could start incorporating tokens, with bad karma. Add test. | ||||
* | 34570: Another nasty command / math substituion thing. | Peter Stephenson | 2015-02-19 | 1 | -0/+23 |
| | | | | | | Mark arithmetic substitutions with tokens to make sure the substitution go knows what to do. Before it was guessing by counting the parentheses at the end. | ||||
* | 34560: Fix $(( that's actually a multiline cmd subst. | Peter Stephenson | 2015-02-16 | 1 | -0/+35 |
| | |||||
* | 34530: PRINT_EXIT_VALUE with anonymous functions. | Peter Stephenson | 2015-02-16 | 1 | -6/+6 |
| | | | | Simpler fix, avoiding structural changes. | ||||
* | 34546: further $_ with anon function fix. | Peter Stephenson | 2015-02-13 | 1 | -0/+29 |
| | | | | Also add tests. | ||||
* | 34514: Back out 34485, an alternate solution needs to be worked out. | Barton E. Schaefer | 2015-02-12 | 1 | -6/+6 |
| | | | | (Tweaked to keep the unrelated hunk of the E01 test.) | ||||
* | 34485: More rationalisation for anonymous functions. | Peter Stephenson | 2015-02-09 | 1 | -8/+18 |
| | | | | | | | | Don't attempt to treat as "simple" case as there are too many hidden problems. Pull out some post-execution functions to a common case in execcmd(). | ||||
* | 34344: fix 34338, pcre builtins need loading too | Barton E. Schaefer | 2015-01-22 | 1 | -0/+2 |
| | |||||
* | 34338: check pcre-match feature availability | Barton E. Schaefer | 2015-01-22 | 1 | -1/+1 |
| | | | | It is possible for the module to be linked/loadable but have no features. | ||||
* | users/19756: test for case of closing fd with no error message | Peter Stephenson | 2015-01-20 | 1 | -1/+6 |
| | |||||
* | users/19751: remove error on failure to close file descriptor by number. | Peter Stephenson | 2015-01-20 | 1 | -4/+6 |
| | | | | | Keep it when closing file descriptor stored in a variable, i.e. explicitly opened by the user. | ||||
* | 34322: bug with interface to parsestr() etc. | Peter Stephenson | 2015-01-18 | 1 | -0/+7 |
| | | | | | | | Was showing up in places like ${(e)...} where command substitution could reallocate the token string, but actually there was never any guarantee that the lexer wouldn't do that, so this was always a bit iffy. | ||||
* | 34280: more widespread use of FORCE_FLOAT. | Peter Stephenson | 2015-01-15 | 1 | -0/+10 |
| | | | | Add the case of variables read for use in arithmetic expressions. | ||||
* | 34283: test X02 also needs zpty and shouldn't run on Cygwin | Peter Stephenson | 2015-01-14 | 1 | -1/+3 |
| | |||||
* | 34275: assume zpty can't be used for testing Cygwin | Peter Stephenson | 2015-01-14 | 4 | -4/+11 |
| | |||||
* | Propagate float/integer type in arithmetic assignment. | Peter Stephenson | 2015-01-12 | 1 | -1/+9 |
| | | | | | | Add test. Mention this and also floating point mod change in README. | ||||
* | 34247: regression test for 34230. | Barton E. Schaefer | 2015-01-11 | 1 | -0/+6 |
| | |||||
* | test for alias expansion in command substitution | Peter Stephenson | 2015-01-10 | 1 | -0/+12 |
| | |||||
* | Fix command substitutions to parse contents as they are read in. | Peter Stephenson | 2015-01-08 | 1 | -0/+42 |
| | | | | | | | Do this by refactoring misnamed lexsave()/lexrestore() to allow continuity of history and input. Add test. | ||||
* | 34077: further tests for return status from "for" loops | Peter Stephenson | 2015-01-02 | 1 | -0/+53 |
| | |||||
* | 34064: assignment before command replaces array with export even when KSH_ARRAYS | Takeshi Banse | 2014-12-27 | 1 | -0/+18 |
| | |||||
* | 34065: following an "if" condition, do not test lastval for ERR_EXIT until a ↵ | Barton E. Schaefer | 2014-12-27 | 1 | -0/+17 |
| | | | | | | new command is run Includes unposted regression tests. | ||||
* | unposted: Add missing -f arg to zsh in D04parameter.ztst | Peter Stephenson | 2014-12-14 | 1 | -2/+2 |
| | |||||
* | 33924: allow vi line/characterwise mode to be forced | Oliver Kiddle | 2014-12-08 | 1 | -0/+21 |
| | |||||
* | 33829: unbind ESC~ as a more reliable workaround | Jun-ichi Takimoto | 2014-12-07 | 2 | -1/+2 |
| | |||||
* | 33860: minor fixes to vi mode changes | Oliver Kiddle | 2014-12-05 | 1 | -0/+10 |
| | |||||
* | 33823: overwrite mode shouldn't replace newlines | Oliver Kiddle | 2014-11-30 | 1 | -0/+13 |
| | |||||
* | 33816, 33819: GLOB_ASSIGN changes integer and floating type variables to ↵ | Barton E. Schaefer | 2014-11-28 | 1 | -0/+20 |
| | | | | string scalars | ||||
* | unposted: test binary input using 0b | Peter Stephenson | 2014-11-26 | 1 | -0/+8 |
| | |||||
* | 33769: workaround for KEYTIMEOUT to work from test | Jun T | 2014-11-25 | 1 | -2/+2 |
| | | | | cases on Darwin and FreeBSD | ||||
* | 33738: account for a selection in vi-replace-chars | Oliver Kiddle | 2014-11-21 | 1 | -0/+5 |
| | |||||
* | 33730: vim style text objects for selecting words | Oliver Kiddle | 2014-11-21 | 1 | -0/+39 |
| | |||||
* | 33704: keybindings, documentation, tests and minor | Oliver Kiddle | 2014-11-17 | 2 | -1/+110 |
| | | | | fixes for vim style visual selection changes | ||||
* | 33699: support short delays in zle tests where we | Oliver Kiddle | 2014-11-17 | 2 | -3/+15 |
| | | | | need KEYTIMEOUT to elapse | ||||
* | 33695: fix various vi-indent problems and vi-swap-case on a blank line | Oliver Kiddle | 2014-11-15 | 2 | -1/+22 |
| | |||||
* | 33686: set PS1 before pattern-matching for it | Barton E. Schaefer | 2014-11-13 | 1 | -3/+3 |
| | | | | | If run as a privleged user, the default PS1 does not contain "%", so don't use the default PS1 when expecting to match "%" in the output. | ||||
* | 33669: allow an empty line to be yanked with yy | Oliver Kiddle | 2014-11-13 | 1 | -0/+7 |
| | | | | This by allocating 1 byte instead of 0 for the empty buffer. | ||||
* | 33599: workaround zpty issue that causes vi test | Jun T | 2014-11-09 | 1 | -1/+1 |
| | | | | cases to fail on MacOS and FreeBSD |