summaryrefslogtreecommitdiff
path: root/Src
AgeCommit message (Collapse)AuthorFilesLines
2015-06-2935637: remove the now unused module hook for reverse-menu-completeOliver Kiddle3-8/+2
2015-06-2935627: make reverse-menu-complete start with the last match inOliver Kiddle6-68/+36
menu selection
2015-06-2935623: fix menu-selection where initial selectionOliver Kiddle1-0/+3
would not be displayed without scrolling
2015-06-2835643: Redirections after typeset assignments were broken.Peter Stephenson1-0/+2
2015-06-2735642: signal queueing in zcontext_save_partial()Barton E. Schaefer1-0/+4
2015-06-2735635: a bit more consistency about making elements localPeter Stephenson1-1/+1
2015-06-2735634: handle failure of gettempname() in namedpipe()Barton E. Schaefer1-0/+4
2015-06-2735623: All is_array assignments should be treated as having a value.Peter Stephenson2-25/+29
2015-06-2635615: fix completion after tyepsetPeter Stephenson2-5/+13
2015-06-2635613: Handle array slices in typesetPeter Stephenson1-1/+8
2015-06-25typeset silent on repeated typeset x=()Peter Stephenson1-1/+2
2015-06-2535604: create empty arrays in typeset with array=()Peter Stephenson1-9/+12
2015-06-2535550: fix backspace in interactive menu-selectJun-ichi Takimoto1-2/+2
2015-06-2435514: [[:foo:]] tests in completion should be more specificHan Pingtian1-2/+2
2015-06-2435590: tweak and test text output from typesetPeter Stephenson1-0/+2
2015-06-24various posts: Implement assignment parsing for typeset.Peter Stephenson8-162/+611
Typeset assignments now work like raw assignments except for no "+=" and no GLOB_ASSIGN. Documented in typeset builtin doc and mentioned in release notes. Tests to ensure basic sanity. Enabled by default, can be turned off by "disable -r" with typeset family of commands.
2015-06-23unposted: add missing (void) argument list to bracketedestring()Peter Stephenson1-1/+1
2015-06-2233566: regex module fix for unmatched parenthesesPeter Stephenson1-0/+5
2015-06-1935474, 35492: support the bracketed paste mode of newer terminal emulatorsOliver Kiddle6-36/+147
2015-06-1935487, 35496: don't reinstate previous incremental search stringOliver Kiddle2-2/+4
when search direction changes
2015-06-1735476: Allow setting $0 when POSIX_ARGZERO is not setMikael Magnusson1-1/+16
2015-06-1635493: erase $_ when the command line is an assignmentBarton E. Schaefer1-0/+1
2015-06-1635482: be consistent about how argzero is allocatedBarton E. Schaefer1-2/+3
2015-06-12Add non-metafied character length handling.Peter Stephenson10-31/+131
Use this in regex module and add test using $'\ua0'. Rename mb_metacharinit() to mb_charinit() as it does not involve metafied characters.
2015-06-0835416: Turn on MULTIBYTE in all emulations.Peter Stephenson1-1/+1
This now includes sh.
2015-06-0735412: fix for - flag when formating strings with printfOliver Kiddle1-1/+1
2015-06-0635350: extend "fc -I" to cover listing of "internal" history events onlyBarton E. Schaefer1-10/+14
2015-06-0535386: expand tabs where useful in builtins outputing function.Peter Stephenson6-39/+196
Also add to zed -f. Option is -x <numm>.
2015-06-0335360 (replacing 35357): fix for configuring zpty on FreeBSD withoutOliver Kiddle1-1/+1
pty.ko loaded
2015-06-02GLOB_ASSIGN should only affect scalar assignmentsMikael Magnusson1-2/+2
2015-06-0235359: Improved math parsing and errors.Peter Stephenson1-7/+14
Check for bogus trailing ")" at end of top-level parse. Extend some math error messages to indicate they are math errors.
2015-06-0235357: FreeBSD needs HAVE_POSIX_OPENPT for zptyBaptiste Daroussin1-1/+1
2015-06-0235353: print -x and print -X expand tabsPeter Stephenson2-6/+137
2015-05-3135343: Avoid $#name length handling for POSIX_IDENTIFIERSPeter Stephenson1-1/+2
2015-05-30users/20238: add "fc -L" to operate only on the local shell historyBarton E. Schaefer1-10/+13
Also avoid invoking the editor on empty results.
2015-05-2935326: $#- was misparsed as ${#-}Peter Stephenson1-1/+1
2015-05-292037: ${functions[foo]} shouldn't be unmetafied.Peter Stephenson1-5/+0
When passed back from the parameter-specific "get" handler it's still in the shell's internals, so remains metafied. This caused mayhem with UTF-8 characters in function bodies.
2015-05-2835318: POSIX_BUILTINS behaviour for getopts.Peter Stephenson2-4/+12
It needs to keep OPTIND, as well as the index within the string pointed to by OPTIND, global in this case.
2015-05-2735306: "test -z \(" failed due to parse confusionPeter Stephenson1-8/+17
2015-05-2335127#1: Fix _describe/compdescribe problem with unsorted groupsDaniel Shahaf2-7/+42
2015-05-22Tweak test for function level of exit.Peter Stephenson1-1/+1
Sometimes local level jumps so we need an inequality instead of an equality.
2015-05-2135250: Fix case documentation (SH_GLOB)Peter Stephenson1-2/+2
2015-05-2135248: treat fully parenthised zsh patterns as complete case patterns againPeter Stephenson2-12/+85
2015-05-2035231: make mkevnstr() safe for NULL valueBarton E. Schaefer1-5/+9
2015-05-1835193: Add "unalias -a".Peter Stephenson2-7/+38
2015-05-1835184: Additional case fix for 35168.Peter Stephenson1-2/+0
Lexical analysis flags got screwed up after a "|", so we didn't parse patterns properly, in particular those with parentheses.
2015-05-1835168: Improve parsing of case patterns.Peter Stephenson4-111/+96
"|" is now found properly by looking for words that come from the lexical analyser, rather than hacking a pattern returned in one dollop. Update some completion functions that need extra quoting as a result. Add test for new parsing. Update version number to 5.0.8-dev-3 because of wordcode incompatibility.
2015-05-1535155: cmdpop() could be called erroneously on errorPeter Stephenson1-2/+4
2015-05-1535153: nested math substitutionPeter Stephenson1-2/+11
2015-05-1535151: improved check for parameter q and b flagsPeter Stephenson1-1/+2