Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-05-13 | 51738: support pcre's alternative DFA matching algorithm | Oliver Kiddle | 1 | -17/+36 | |
2023-05-13 | 51728: assign pcre named capture groups to a hash | Oliver Kiddle | 1 | -10/+33 | |
2023-05-13 | 51723: migrate pcre module to pcre2 | Oliver Kiddle | 1 | -136/+87 | |
2023-05-11 | users/29070: clean up tokens in cmdstr before compctl completion | Bart Schaefer | 1 | -0/+2 | |
2023-04-22 | 51670: prevent possible underflow in gettext() | Bart Schaefer | 1 | -1/+1 | |
2023-04-17 | 51652: fix running of TRAPEXIT explicitly. | Peter Stephenson | 1 | -1/+33 | |
This is a special case where TRAPEXIT is unset within a TRAPEXIT as it should never run in a nested context, so just save the function structure temporarily on the heap. | |||||
2023-04-11 | 51639: new parameter ZSH_EXEPATH (full path of zsh executable) | Jun-ichi Takimoto | 1 | -1/+116 | |
The full pathname is obatined by a reliable method on macOS and systems that support procfs. But on other systems (FreeBSD, OpenBSD, ...) it is guessed from argv[0], PWD and PATH. | |||||
2023-04-09 | 51631: initialize $_ by copying it from environment | Jun-ichi Takimoto | 1 | -3/+6 | |
2023-04-09 | 51632: nmetafy $_ when exporting it to child | Jun-ichi Takimoto | 1 | -1/+1 | |
2023-04-03 | 51597: fix 'vared -c var' when var is unset | Jun-ichi Takimoto | 1 | -1/+2 | |
2023-03-30 | 51604: %M in TIMEFMT should report in kilobytes | Jun-ichi Takimoto | 1 | -7/+7 | |
2023-03-29 | 51608: Don't execute commands after "continue &&" | Peter Stephenson | 1 | -2/+2 | |
Also ! continue || | |||||
2023-03-28 | 51602: Handle SIGIOT as an alias to SIGABRT if they are the same signal number | Mikael Magnusson | 2 | -4/+10 | |
2023-03-22 | 58586: print "%s" with invalid multibyte character | Peter Stephenson | 1 | -13/+14 | |
Treat each byte that is invalid or part of an incopmlete set as a single byte. | |||||
2023-03-14 | 51573: additional "typset -p -m" fix for namespaces | Bart Schaefer | 1 | -3/+5 | |
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-11 | 51557: Clarify availability of ksh-mode parameters, improve vi-mode detection. | Bart Schaefer | 1 | -2/+3 | |
2023-03-06 | 51510: Skip namespaces in "set"/"typeset" output, add tests, fix bug | Bart Schaefer | 4 | -8/+19 | |
2023-03-06 | 51509 (+ fix typo): Add ${(!)name} for the referred-to name of a named reference | Bart Schaefer | 3 | -9/+37 | |
Extend ${!name} in ksh emulation for same | |||||
2023-03-06 | 51524: dependency on zsh/zle for linkage | Bart Schaefer | 1 | -0/+2 | |
2023-03-05 | 51485: module for several ksh93 features, mostly enabled only in ksh emulation. | Bart Schaefer | 3 | -1/+274 | |
2023-03-05 | 51484: Extend named reference handling for special parameters, improve doc. | Bart Schaefer | 1 | -44/+64 | |
2023-03-05 | 51483: Enable assignment and expansion of parameters with ksh-like namespace ↵ | Bart Schaefer | 8 | -19/+40 | |
prefixes. | |||||
2023-03-05 | unposted: fix memory leak flagged by coverity | Bart Schaefer | 1 | -0/+1 | |
2023-02-28 | 51491: Check should use zlemetacs instead of zlecs | Mikael Magnusson | 1 | -1/+1 | |
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-26 | 51460: avoid crash on bad parameter autofeature | Bart Schaefer | 1 | -6/+11 | |
2023-02-21 | Fix access to autoloaded parameter. | Peter Stephenson | 1 | -1/+1 | |
Namerefef resolution needs to happen on the parameter after autoload. | |||||
2023-02-20 | 51431: "typeset -p" shouldn't change parameter flags | Bart Schaefer | 1 | -13/+33 | |
2023-02-17 | 51447: silence compiler maybe-uninitialized warning by combining a couple of ↵ | Oliver Kiddle | 1 | -12/+13 | |
variables | |||||
2023-02-14 | 51437: Fix incorrectly-passed test case, masked by unrelated bug. | Bart Schaefer | 1 | -2/+3 | |
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-14 | 51424: $(<...) shouldn't try to open a file with NO_EXEC | Peter Stephenson | 1 | -0/+3 | |
2023-02-13 | 51430: Misc. problems with typeset and $parameters | Bart Schaefer | 3 | -8/+12 | |
* 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-12 | 51417: Check subscripts in named reference values more rigorously. | Bart Schaefer | 1 | -1/+10 | |
2023-02-12 | 51402: Some ksh/bash features, additional sanity checking | Bart Schaefer | 4 | -27/+124 | |
* 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-12 | 51374: Expose named references in $parameters, fix substitution error. | Bart Schaefer | 2 | -5/+16 | |
2023-02-12 | 51360: Initial implementation of named references. | Bart Schaefer | 6 | -16/+262 | |
2023-02-12 | 51404: Nullify filelist after deleting (fix segfault) | Bart Schaefer | 1 | -2/+6 | |
2023-02-09 | 51320, 51383: fixes to prevent later reappearance of old attributes | Oliver Kiddle | 3 | -1/+5 | |
Also associated test updates and a test fix for TERM=dumb. | |||||
2023-02-06 | 51350: ${(S)...//#%...} didn't match the whole string | Peter Stephenson | 1 | -0/+3 | |
2023-02-02 | 51306: error message in ${unset?error} should be expanded | Peter Stephenson | 1 | -1/+5 | |
2023-02-02 | 51307: Improve error on attempt to define function from aliased name | Peter Stephenson | 2 | -2/+6 | |
2023-01-21 | 51310: zle -F handlers preserve LASTWIDGET | Bart Schaefer | 1 | -0/+2 | |
Also fix email address in an old ChangeLog entry | |||||
2023-01-16 | 51278: make (i) subscript flag for zero-length string consistent | Peter Stephenson | 1 | -1/+1 | |
2023-01-11 | unposted: mention attributes changes, fix renumbering mistake and allow ↵ | Oliver Kiddle | 1 | -1/+1 | |
completion to offer prompt escapes for PROMPT_EOL_MARK | |||||
2023-01-11 | 51295: where the end of a region coincides with the end of PREDISPLAY, don't ↵ | Oliver Kiddle | 1 | -3/+3 | |
extend it to include new text Also fix issue where an int was used for a copy of attributes which breaks if int is smaller than zattr. | |||||
2023-01-10 | 51292: fix dynamic updates of region_highlight to account for PREDISPLAY | Oliver Kiddle | 1 | -4/+4 | |
2023-01-10 | 51291: support for highlighting ellipses in the line editor | Oliver Kiddle | 2 | -25/+38 | |
2023-01-10 | 51290: fix display of control characters with SINGLE_LINE_ZLE set | Oliver Kiddle | 1 | -3/+3 | |
2023-01-10 | 51289: don't disable non-colour attributes in prompts for SINGLE_LINE_ZLE ↵ | Oliver Kiddle | 2 | -4/+1 | |
and remove superfluous extra escapes to disable attributes | |||||
2023-01-10 | 51281: keep track of attributes left on at the end of left and right prompts ↵ | Oliver Kiddle | 3 | -27/+24 | |
and reapply them explicitly as appropriate | |||||
2023-01-10 | 51280: add support for italic and faint fonts in the line editor | Oliver Kiddle | 4 | -48/+88 | |