summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2023-03-2851602: Handle SIGIOT as an alias to SIGABRT if they are the same signal numberMikael Magnusson3-4/+15
2023-03-2751589: Update nm optionsShohei YOSHIDA2-4/+11
- Update Binutils nm 2.40.0 - Update elftoolchain nm 0.7.1
2023-03-2751603: complete dates and times in the form that git acceptsOliver Kiddle2-20/+88
2023-03-2258586: print "%s" with invalid multibyte characterPeter Stephenson2-13/+20
Treat each byte that is invalid or part of an incopmlete set as a single byte.
2023-03-1651583: update completion of git attributesOliver Kiddle2-45/+39
2023-03-1651582: openssh 9.3 completion updateOliver Kiddle2-66/+120
2023-03-1651581: update completions to cover changes in OpenBSD 7.2Oliver Kiddle6-6/+15
2023-03-1451573: additional "typset -p -m" fix for namespacesBart Schaefer2-3/+9
The "-m pattern" option is supposed to enable printing namespaces, but that didn't work when combined with -p. The -p option could also cause an unset parameter to become set if a named reference pointed at it.
2023-03-1351572: fix "shift" error when running standaloneBart Schaefer2-3/+5
2023-03-13Sven Joachim: 51563: Fix unmatched double quoteSven Joachim2-1/+5
2023-03-11Merge intervening change by OPK.Bart Schaefer2-14/+33
2023-03-1151558: Clarify "for" with positional parameters and named reference.Bart Schaefer2-1/+6
2023-03-1151557: Clarify availability of ksh-mode parameters, improve vi-mode detection.Bart Schaefer3-5/+13
2023-03-1151539: don't complete diff options to git blameOliver Kiddle2-14/+33
2023-03-0751534: update for recent changes in zsh.hBart Schaefer2-4/+13
2023-03-0651511: More discussion of unsupported ksh featuresBart Schaefer2-17/+56
2023-03-0651511: Documentation for namespacesBart Schaefer3-1/+30
2023-03-0651510: Skip namespaces in "set"/"typeset" output, add tests, fix bugBart Schaefer6-8/+130
2023-03-0651509 (+ fix typo): Add ${(!)name} for the referred-to name of a named referenceBart Schaefer4-9/+41
Extend ${!name} in ksh emulation for same
2023-03-0651524: dependency on zsh/zle for linkageBart Schaefer2-0/+6
2023-03-0551486: clarify module development sectionBart Schaefer2-7/+12
2023-03-0551485: module for several ksh93 features, mostly enabled only in ksh emulation.Bart Schaefer6-2/+490
2023-03-0551484: Extend named reference handling for special parameters, improve doc.Bart Schaefer3-44/+69
2023-03-0551483: Enable assignment and expansion of parameters with ksh-like namespace ↵Bart Schaefer9-19/+45
prefixes.
2023-03-05unposted: fix memory leak flagged by coverityBart Schaefer2-0/+5
2023-02-2851491: Check should use zlemetacs instead of zlecsMikael Magnusson2-1/+6
Coverity noticed that this first branch of the if statement has "meta" added to all the variable names except this zlecs at the end, so change it to match.
2023-02-2651464: utility to interpret zsh.h constantsBart Schaefer2-0/+603
2023-02-26Fix typoBart Schaefer2-1/+3
2023-02-2651460: avoid crash on bad parameter autofeatureBart Schaefer2-6/+15
2023-02-2451473: Update cal/ncal completionShohei YOSHIDA2-13/+119
- Support util-linux and bsdmainutils cal on Linux - Support each BSD's implementations
2023-02-2451470 (tweaked, c.f. 51476): Separate cdpath elements in path-directories ↵Sebastian Stark2-2/+13
completion
2023-02-2451474: make -e and --vault-id options repeatable and update for new options ↵Oliver Kiddle2-25/+69
to ansible 2.13.2
2023-02-21Fix access to autoloaded parameter.Peter Stephenson2-1/+5
Namerefef resolution needs to happen on the parameter after autoload.
2023-02-2051431: "typeset -p" shouldn't change parameter flagsBart Schaefer2-13/+37
2023-02-1951456: complete only modified files with git add -uOliver Kiddle2-8/+17
Also fix a typo, add a missing =, add a prompt for function name after git blame -L and git worktree --force has gained a short -f form.
2023-02-1951455, 51461: new completion for the OpenLDAP client tools including a ↵Oliver Kiddle5-2/+349
helper function for LDAP search filters
2023-02-1751447: silence compiler maybe-uninitialized warning by combining a couple of ↵Oliver Kiddle2-12/+16
variables
2023-02-1751391: complete remote branch names respecting --delete for git pushØystein Walle2-1/+14
2023-02-1451437: Fix incorrectly-passed test case, masked by unrelated bug.Bart Schaefer3-4/+29
A bug with zmodload when unloading/reloading a static module caused the state of the shell options to change during K01 test. Worked around it. Also changed warnnestedvar messages to look more like other such.
2023-02-1451424: $(<...) shouldn't try to open a file with NO_EXECPeter Stephenson3-0/+11
2023-02-1351430: Misc. problems with typeset and $parametersBart Schaefer5-8/+33
* Fix and test for regression of assignment when using typeset command * Fix output of typeset +m and $parameters[ref] * Prevent segfault in typeset
2023-02-1251417: Check subscripts in named reference values more rigorously.Bart Schaefer3-3/+15
2023-02-1251403: Tests and documentation for 51402, clean up some other tests.Bart Schaefer7-18/+218
2023-02-1251402: Some ksh/bash features, additional sanity checkingBart Schaefer5-27/+129
* Add "unset -n" * Allow and enforce "typeset -n -r" for read-only references * "can't change type via subscript reference" error * Better checking for self-referential declarations/assignments * Ksh-style "foo=bar; typeset -n foo" creates foo=bar reference * Support "typeset -n ref; for ref in ..." * Subscripted references use NO_EXEC for safety * References assigned in called scopes reset scope at end * Allow named references to $! $? $$ $- $0 $_
2023-02-1251375: Clarify documentation, fix typos, add indexing.Bart Schaefer5-19/+44
2023-02-1251374: Expose named references in $parameters, fix substitution error.Bart Schaefer5-21/+110
2023-02-1251362: Begin documentation for named references.Bart Schaefer5-7/+146
2023-02-1251361: Tests for 51360.Bart Schaefer3-0/+520
2023-02-1251360: Initial implementation of named references.Bart Schaefer7-16/+266
2023-02-1251404: Nullify filelist after deleting (fix segfault)Bart Schaefer2-2/+10