about summary refs log tree commit diff
path: root/Src
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* 52271: use correct form for unused parameterOliver Kiddle2023-11-081-1/+1
|
* 52253: support pcre callouts with shell evaluation of the callout stringOliver Kiddle2023-11-021-2/+32
|
* 52252: Coverity defect 1547827Oliver Kiddle2023-11-011-1/+2
|
* 50569 (Daniel Shahaf): main keymap defaults to emacsBart Schaefer2023-10-261-9/+3
| | | | | Tweaked to make the sample .zshrc code better match the former C code, and to remove the declaration of no-longer-used variable "ed".
* 52244: Fix a batch of minor defects reported by Coverity.Bart Schaefer2023-10-269-37/+29
| | | | | | Coverity defects 1547831, 1547826 (remove unused function), 1521551, 1500752, 1500747, 1401549, 1372423, 1270645, 1255799, 1255792, 1255789, 1255787, 1255782, 1255750
* github #104: fix small typoErrrorMaxx2023-10-241-1/+1
|
* 51490: Use time_t for lastt which stores result of time(0)Mikael Magnusson2023-10-161-2/+2
| | | | | Coverity complained about this, and possibly some more people would in 15 years
* 52189: ignore compadd -M if -U also specified as they don't make sense togetherOliver Kiddle2023-10-111-1/+3
| | | | This fixes df completion.
* 52216: metafy usernames to allow for them to be UTF-8 encodedOliver Kiddle2023-10-111-8/+18
|
* 52214: allow extra byte for nul terminator in allocationOliver Kiddle2023-10-111-1/+1
|
* 52204: fix thinko, unmeta() buffer should not be freedBart Schaefer2023-10-051-2/+0
|
* 52198: put back incorrectly removed zfree()Bart Schaefer2023-10-031-0/+1
|
* 52195: cached_username is already metafied when initializing LOGNAMEBart Schaefer2023-10-011-4/+3
|
* 52193: handle UTF8-encoded USERNAME and therefore home directory in zcompileBart Schaefer2023-10-014-7/+13
| | | | Includes one unposted thinko fix ztrdup -> dupstring
* 52169: a few more improvements of (#) flagJun-ichi Takimoto2023-09-272-124/+121
| | | | | | fix (#X) in C locale in FreeBSD, DragonFly, NetBSD. Negative values such as ${(#X):--1} are now error. UCS4 is limited to < 0x8000_0000 (in OSes without __STDC_ISO_10646__).
* 52176: metafy return from ${ ... } substitutionBart Schaefer2023-09-221-3/+4
|
* users/29160, workers/52156: Fix repetition of substitution modifier.Bart Schaefer2023-09-161-2/+4
|
* 52154, 52155: Implement, document, and test non-forking command substitution.Bart Schaefer2023-09-162-19/+210
| | | | | | Comprises workers/51957, 51985, 51987, 51988, 51993, 52131, 52139, plus fixes for return values, parse errors, and trailing newlines (which were incorrectly removed) in ${ ... }
* 52153: mapfile without HAVE_MMAP should not trim newlinesBart Schaefer2023-09-162-13/+41
|
* 52122 + 52129: fix (#) parameter expansion flagJun-ichi Takimoto2023-09-131-3/+10
| | | | Without the X flag, null string "" is substituted for bad math expression.
* 52125: getoutput() must not free() after gettempname(..., 1) for heapBart Schaefer2023-09-101-1/+0
|
* 52115: permit repeated "private" declarations as long as types aren't changedBart Schaefer2023-09-051-3/+46
|
* users/29220: fix bug with assignment to private following explicit unsetBart Schaefer2023-09-031-11/+18
|
* 52053: whitelist capability CAP_WAKE_ALARMRobert Woods2023-08-271-3/+3
| | | | | | | | Since the systemd update v254 from July 28, 2023, the capability 'CAP_WAKE_ALARM' is passed by default to some user process (especially desktop managers). Since 'CAP_WAKE_ALARM' is very narrow in focus, it is preferable that zsh does not consider it as a 'privileged' capability.
* users/29175: Don't need to forget zle edits if noneNojus Gudinavičius2023-08-221-0/+12
|
* 52008: Pattern bug with branches + exclusionPeter Stephenson2023-08-011-2/+20
| | | | Add tests.
* 51945: assorted documentation improvements, bug fixes, and new testBart Schaefer2023-07-262-13/+42
| | | | | | | | | | | | | | 1) Document the behavior of "typeset -n existing_var" (via Jun T. comment) 2) Prohibit "typeset -nm pattern" because, well, it's insane. Add test. 3) Improve doc for ${(!)ref} including ${{t!)ref} (Jun T.) 4) Fix doc for how-to unset of a named ref (Jun T.) 5) Allow "typeset +r -n ref" and "typeset +r +n ref" (Jun T.) 6) Fix "typeset -r -n ref=param" to create readonly references 7) Avoid accidental removal of PM_UNSET flag (Jun T.) and update test 8) Fix "typeset -gn ref=value" and add a test for it 9) Add tests for read-only reference behavior 10) Fix infinite recursion when resolving scope of an unset local named reference, add test.
* 51969: read -d and -s should not reset terminal state when stdin is redirectedBart Schaefer2023-07-261-3/+3
|
* 51950 (tweak per 51949): correct Thingy refcount in raw_getbyte()Bart Schaefer2023-07-261-1/+2
|
* 51977: PIPEFAIL interaction with ERREXIT / ERRRETURNPeter Stephenson2023-07-201-5/+11
| | | | | | Ensure the list-level error handling code is executed if we detect pipe failure for a foreground job. Add tests.
* 51890: fix "whence -wa" for multiple argumentsBart Schaefer2023-07-091-0/+1
|
* 51889: fix module loading problem with full RELROJun-ichi Takimoto2023-06-262-1/+25
| | | | | | | | If full RELRO (relocation read-only, one of the security enhancement methods for ELF-based systems) is used when building zsh (as in binary packages of most Linuxes), loading a module (e.g. zsh/zftp) fails unless all the modules it depends on are already loaded. With this patch the necessary modules are automatically loaded.
* 51884: reset IFS if it contains invalid charactersJun-ichi Takimoto2023-06-262-16/+29
| | | | This happens only if MULTIBYTE option is on.
* 51887: namespaces recognized in math, incorrect usages rejected.Bart Schaefer2023-06-222-4/+33
|
* 51877: do not build pcre module if pcre2-config is not foundJun-ichi Takimoto2023-06-201-1/+1
|
* 51826: correctly read metafied null character from history fileJun-ichi Takimoto2023-06-081-2/+8
|
* 51816: add :S history modifier with pattern matchPeter Stephenson2023-06-062-8/+21
|
* 51739: detect invalid history word beginningPeter Stephenson2023-05-251-1/+6
|
* 51769: fix compilation when HAVE_GETRUSAGE is not definedOliver Kiddle2023-05-212-1/+3
| | | | Also silence compiler warning when HAVE_SETUPTERM is not defined.
* 51722: Safety for extracting elements of $historywordsPeter Stephenson2023-05-131-2/+9
|