about summary refs log tree commit diff
path: root/Src
Commit message (Collapse)AuthorAgeFilesLines
* 52650 plus minor fixes: add -u for named references pointing to "upper" scopeBart Schaefer2024-03-044-15/+43
|
* 52646: extend support for highlight groups to completion explanation strings ↵Oliver Kiddle2024-03-054-4/+28
| | | | and WATCHFMT
* 52652: fix obscure bug unsetting the array part of a tied parameter pairBart Schaefer2024-03-021-2/+5
|
* 52612: %l replacment of zwarning() does literal string outputBart Schaefer2024-03-023-16/+19
|
* 52645: unset through a nameref keep up-scope parameters declared unsetBart Schaefer2024-03-011-0/+6
| | | | | Othewise unset of a reference to a global wipes out all parameters of the same name.
* 52619 (plus tests): no empty element when appending array to unset scalarBart Schaefer2024-02-281-1/+1
|
* 52622 (tweaked, c.f. 52626): adjust number of columns and drop ↵Oliver Kiddle2024-02-281-6/+9
| | | | right-parenthesis in "kill -L" output
* 52623: add some Solaris signal descriptionsOliver Kiddle2024-02-281-0/+3
|
* 52594: support for POSIX real-time signals with kill and trapOliver Kiddle2024-02-2810-56/+227
| | | | Also add new -L option to kill for a more verbose listing of signals
* Fix META_NOALLOC to META_STATIC in 'bad interpreter' metafyBart Schaefer2024-02-241-2/+2
|
* 52597: fix character counts in context of operator and operand errorsBart Schaefer2024-02-241-7/+18
|
* 52596: metafy interpreter name for error messageBart Schaefer2024-02-241-3/+3
|
* 52591: printf builtin must pass metafied strings to math evaluationStephane Chazelas2024-02-241-4/+6
|
* 52583: extra check for proper scope and existence of readonly specialsBart Schaefer2024-02-231-2/+23
|
* 52559: revise "typeset -p" with respect to local readonly special parametersBart Schaefer2024-02-202-3/+23
| | | | | Update doc and tests to describe handling of global readonly specials and to account for side-effects on zsh/param/private.
* unposted: referent of named reference cannot start with digitsBart Schaefer2024-02-181-0/+2
| | | | This duplicates ksh behavior and doesn't change useful functionality.
* 45837: fix process group restoration upon exitStephane Chazelas2024-02-183-9/+13
|
* 52515: (+ tests in 52527) avoid sh errors when running shebang-less scripts ↵Stephane Chazelas2024-02-181-2/+15
| | | | with paths starting with - or +
* 52556: fix crash when changing type of unset referent via named referenceBart Schaefer2024-02-171-2/+4
|
* 52533: add module to provide alternate readonly views of the content of ↵Oliver Kiddle2024-02-153-0/+246
| | | | .zle.hlgroups
* 52526: metafy terminfo capabilitiesMikael Magnusson2024-02-091-2/+2
|
* 52517: ensure that %H is followed by {Mikael Magnusson2024-02-041-4/+6
| | | | | The previous code would accept any character after %H assuming it was a {, which was probably also a buffer overrun sometimes.
* 52516: fix crash in %H when hlgroups is emptyMikael Magnusson2024-02-041-1/+1
| | | | typeset -A .zle.hlgroups; print -P %H
* Typos in previous commit commentsBart Schaefer2024-02-032-2/+2
|
* unposted: Record as comments some notes about namespace usage exceptions.Bart Schaefer2024-02-033-1/+7
|
* 52513: fixes and doc for using nofork substitutions with private parametersBart Schaefer2024-02-032-25/+45
| | | | Also fixes a crash bug with {fd}>&N redirections and private parameters
* 52509: manage internals of stdio objects when performing redirections.Bart Schaefer2024-01-281-0/+22
|
* 52500: add layer token to zle attributesOliver Kiddle2024-01-283-46/+84
| | | | | This provide control over the precedence of highlighting where different regions overlap.
* 52499: support highlight groupsOliver Kiddle2024-01-281-2/+48
| | | | | These are defined in a .zle.hlgroups associative array and referenced using %H in prompt strings or hl= in zle_highlight/region_highlight.
* unposted: remove unused variable to silence compiler warningOliver Kiddle2024-01-281-2/+1
|
* 52442: mark hookdef.name as constJörg Sommer2024-01-281-1/+1
| | | | | At least *zle_main* uses const strings to initialize its structure *zlehooks*.
* 52444: module: Mark name argument of some functions constJörg Sommer2024-01-281-7/+8
|
* 52441: zle_vi: Mark variables with const init as constJörg Sommer2024-01-281-1/+1
| | | | | | Because these variables are initialized with as constant string, they should be marked as *const* to make the compiler running with `-Wwrite-strings` more happy.
* 52440: zle.textobjects: Mark variables as constJörg Sommer2024-01-281-3/+3
| | | | | | Because these variables are initialized with as constant string, they should be marked as *const* to make the compiler running with `-Wwrite-strings` more happy.
* 52405, 52502: add empty elements to $match for optional captures that don't ↵Oliver Kiddle2024-01-261-1/+4
| | | | match
* 52492: prevent indexing error on recursive arithmetic in array subscriptBart Schaefer2024-01-241-1/+6
| | | | Operator returns error when operand returns error
* 52482: strip trailing newlines in emulation modes of ${ command; }Bart Schaefer2024-01-241-0/+6
|
* 52477: fix "zcurses mouse delay ..." and one other typoBart Schaefer2024-01-241-2/+2
|
* 52473: zstyle -q for testing existence of a zstyle settingBart Schaefer2024-01-241-0/+32
|
* 52468: save and restore state of correct TTY when using read -s / -dBart Schaefer2024-01-242-15/+29
|
* 52392: use octal escape to match = without error messages from awkOliver Kiddle2023-12-131-1/+1
|
* 52382: avoid the non-standard \e in C code, preferring \033Oliver Kiddle2023-12-132-2/+2
|
* unposted: Fix longstanding typo in commentBart Schaefer2023-12-091-1/+1
|
* 52365: record state of exited background jobs so as to be visible in TRAPCHLDBart Schaefer2023-12-092-13/+22
|
* 52326, 52372: add -q option to kill for sigqueueOliver Kiddle2023-12-051-2/+34
|
* 52325: Clarify doc for edge cases of named references and nofork substitutionBart Schaefer2023-11-231-1/+1
| | | | Unposted whitespace change avoids a parse error in ${ ... } with comments.
* 52313: Src/exec.c: multios are not interactive and check for write errors.Bart Schaefer2023-11-181-2/+6
|
* 52309: fix cases that hang with all signals blocked.Bart Schaefer2023-11-151-2/+2
| | | | | * no job control inside <<(substition) * allow interrupt of multios reading from a terminal
* 52275: rationality in zgetdir() and zgetcwd()Bart Schaefer2023-11-151-48/+52
|
* 52202: improve handling of quoting in ${var/pattern/replacement}Bart Schaefer2023-11-152-21/+39
|