summaryrefslogtreecommitdiff
path: root/Src
AgeCommit message (Collapse)AuthorFilesLines
2016-08-1239028: more join/split cases fixed and tested.Barton E. Schaefer1-3/+4
2016-08-1039019 (cf. PWS 39013): fix SHWORDSPLIT regression introduced by workers/29313Barton E. Schaefer1-6/+15
Also add test cases for more join/split combinations
2016-08-1039014: Use special OpenBSD interface to get correct rand() behaviorMikael Magnusson1-0/+4
2016-08-06unposted: fix typo in commentBarton E. Schaefer1-1/+1
2016-08-05workers/38995 (in part): compfiles: Add reverse-engineered documentation ↵Daniel Shahaf1-0/+15
breadcrumbs.
2016-08-0538991: Make 'whence -v autoloaded-function' shows the defining filename.Daniel Shahaf1-1/+2
This may also fix a problem whereby the %x prompt escape evaluated to a function name rather than a filename, since %x is also backed by scriptfilename.
2016-08-0138971: Start using the new arrlen_ge() / arrlen_le() helpers.Daniel Shahaf6-12/+12
2016-08-0138973: Optimize indexing array parameters.Daniel Shahaf3-5/+52
% () { for 1 in $prefix/zsh/bin/zsh Src/zsh; do $1 -f -c 'a=( {1..1000000} ); repeat 3 time ( repeat 300 : $a[1] )'; done } ( repeat 300; do; : $a[1]; done; ) 1.68s user 0.01s system 98% cpu 1.718 total ( repeat 300; do; : $a[1]; done; ) 1.69s user 0.01s system 99% cpu 1.710 total ( repeat 300; do; : $a[1]; done; ) 1.69s user 0.01s system 99% cpu 1.714 total ( repeat 300; do; : $a[1]; done; ) 0.00s user 0.01s system 72% cpu 0.022 total ( repeat 300; do; : $a[1]; done; ) 0.00s user 0.01s system 72% cpu 0.022 total ( repeat 300; do; : $a[1]; done; ) 0.01s user 0.01s system 69% cpu 0.023 total
2016-07-2838927: zle-line-pre-redraw: Set $WIDGET like other special widgets do.Daniel Shahaf1-1/+1
2016-07-28users/21793: Remove raw integers as glob qualifiers.Peter Stephenson1-8/+1
There was an ancient undocumented feature that these were treated as a file mode to "or" with that of the file under test. The only documented way of doing this has always been the "f" qualifier, so removed the effect of raw integers to make errors more obvious.
2016-07-2338923: zwaitjob() continues waiting for children that may have ignored the ↵Barton E. Schaefer1-1/+8
interrupt signal, even if the current shell has been interrupted.
2016-07-2038853: use strchr()Peter Stephenson1-7/+1
2016-07-1938862: strptime(3) requires _XOPEN_SOURCE on CygwinJun-ichi Takimoto1-0/+3
2016-07-1838879: Unmetafy file names for glob sort.Peter Stephenson1-1/+29
Test using Polish UTF-8 collation sequence that'w known to cause the problems.
2016-07-1738845: reset region_active before entering zleOliver Kiddle1-1/+1
It was done on exit but before zle-line-finish. Also reword documentation on region to better cover vi mode.
2016-07-0838810: fix cursor positioning and repeated invocations when widgets used ↵Oliver Kiddle1-9/+9
from emacs mode
2016-07-0838809: fix tracking of colour attributes and restore them when turning bold offOliver Kiddle3-7/+10
2016-06-2938770: vi upper/lowercase widgets and shell widget example that reads a vi ↵Oliver Kiddle3-1/+52
movement
2016-06-2938752: add comments to explain use of stdout instead of stderr for the which ↵Oliver Kiddle1-1/+2
builtin
2016-06-22unposted: remove flag unneded from previous fixPeter Stephenson1-2/+1
2016-06-2238746: Fix suffix alias expansion recursion.Peter Stephenson1-3/+4
This was problematic if the expansion landed you back in command position. Delay marking the alias as out of use until the text that caused the expansion is finished.
2016-06-2238714: add x: syntax to match specs to make it possible to disable match ↵Oliver Kiddle1-0/+10
specs hardcoded in completion functions
2016-06-2138734: fix final case clauses terminating with ;&Peter Stephenson1-1/+1
2016-06-2138692: IFS can't be changed in restricted modePeter Stephenson1-1/+1
2016-06-13users/21632: Use of REPORTMEMORY variablePeter Stephenson1-14/+39
If the child's resisdent set size in megabytes exceeds this, print out the resource (TIMEFMT) string. Document you need to add memory usage to this by hand.
2016-06-1338653 + 38657: 'functions -T' tracing: recurse into anonymous functions.Daniel Shahaf1-3/+9
2016-06-0738630: fix infinite loop of "hash ="Barton E. Schaefer1-0/+1
2016-06-0538622: consistent handling of "--" in "kill" builtinBarton E. Schaefer1-0/+4
2016-06-04unposted (cf. 38612): remove overeager DPUTS()Barton E. Schaefer1-1/+0
2016-06-0438599: skip the "no such named directory" warning when NO_EXEC is in effectBarton E. Schaefer1-1/+1
2016-06-03unposted: internal: Document modify().Daniel Shahaf1-0/+13
2016-06-0338586: Metafication problem with $functionsPeter Stephenson1-5/+0
If treated as a complete associative array or scanned (retrieving individual values was not affected), it incorrectly unmetafied the value so multibyte characters got confused. Add test.
2016-06-0238540: fix undo problem by not moving the current change when only undoing a ↵Oliver Kiddle1-3/+8
history line change
2016-06-0221603: Make read_poll more interruptible.Peter Stephenson1-1/+1
If we interrupted the first read we still did the fallback read. This is wrong.
2016-05-2238513: cast time to long long for printing where possibleMatthew Martin1-1/+5
2016-05-1038468: wb,we values in gotword() needed assignment in additional case to ↵Barton E. Schaefer1-0/+4
avoid core dump Bug introduced by 38248. Also fix ChangeLog entry for 38248 to correctly reference Src/lex.c
2016-05-1038463: use immortal widgets in .safe keymapBarton E. Schaefer1-8/+8
2016-05-0938432: avoid nonstandard setenv() on __APPLE__Barton E. Schaefer1-1/+1
2016-04-29unposted: silence spurious compiler warningBarton E. Schaefer1-1/+1
2016-04-2938356: allow integers as curses coloursSebastian Gniazdowski1-2/+14
2016-04-2939354: zcurses fix for colour managementSebastian Gniazdowski1-4/+4
Alter internal return code so as not to mask curses error code.
2016-04-2638350 (cf. Glenn Smith: 38348): Remove-all warning should warn about the ↵Barton E. Schaefer1-2/+2
root directory as well
2016-04-2338291: Change names of ISEARCH_* parameters to ISEARCHMATCH_*m0viefreak1-12/+12
2016-04-23Mikael Berthe: 38307: PCRE segfault when parenthesized group matches nothingBarton E. Schaefer1-1/+1
unposted: regression test for 38307
2016-04-2238306: in printf formats, treat a missing precision as zero rather than as ↵Barton E. Schaefer1-1/+2
unlimited
2016-04-1438287: fix position for the end of a visual selection range for the cursor ↵Oliver Kiddle1-1/+1
on an empty last line in the buffer
2016-04-1438286: cursor correction following yank-pop is only applicable to vi command ↵Oliver Kiddle1-1/+1
mode
2016-04-0738248: fix word position calculation when completing on or just before a ↵Barton E. Schaefer2-3/+22
redirection operator The completion result is still in need of some repair; e.g., if the first thing on the line is the redirection, completion before it is not taken to be in command position, and in this and other cases a necessary space is not inserted between the completed word and the redirection.
2016-04-0538229: fix cursor placement calculation when completing in empty double quotesBarton E. Schaefer1-1/+8
2016-04-0438241: ungetkeycmd() needs to unmetafy key string.Peter Stephenson2-7/+17
Use the new function to simplify memory management in prefix handling. Third time lucky.