about summary refs log tree commit diff
path: root/Src
Commit message (Collapse)AuthorAgeFilesLines
* A couple of issues with tied arrays.Peter Stephenson2015-06-191-5/+19
|
* Update version number for wordcode incompatibility.Peter Stephenson2015-06-192-1/+2
| | | | | | | | | Fix null dereference in tie code. Add export to typeset reserved words. Note "export FOO foo=(stuff here)" still doesn't do the export: there's an ordering problem that needs fixing.
* Debug so basic typeset cases work.Peter Stephenson2015-06-193-30/+41
| | | | | | | | | | | | | zshlex() needed after ENVSTRING and ENVARRAY in typeset. WC_TYPESET needs to come before WC_CURSH as not handled by execfuncs. More care needed counting and retrieving arguments in typeset. Array assignment for new typeset variable should be more like scalar assignment.
* First compiling attempt at typeset array handling.Peter Stephenson2015-06-197-131/+449
| | | | Completely untested and undebugged.
* 35474, 35492: support the bracketed paste mode of newer terminal emulatorsOliver Kiddle2015-06-196-36/+147
|
* 35487, 35496: don't reinstate previous incremental search stringOliver Kiddle2015-06-192-2/+4
| | | | when search direction changes
* 35476: Allow setting $0 when POSIX_ARGZERO is not setMikael Magnusson2015-06-171-1/+16
|
* 35493: erase $_ when the command line is an assignmentBarton E. Schaefer2015-06-161-0/+1
|
* 35482: be consistent about how argzero is allocatedBarton E. Schaefer2015-06-161-2/+3
|
* Add non-metafied character length handling.Peter Stephenson2015-06-1210-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.
* 35416: Turn on MULTIBYTE in all emulations.Peter Stephenson2015-06-081-1/+1
| | | | This now includes sh.
* 35412: fix for - flag when formating strings with printfOliver Kiddle2015-06-071-1/+1
|
* 35350: extend "fc -I" to cover listing of "internal" history events onlyBarton E. Schaefer2015-06-061-10/+14
|
* 35386: expand tabs where useful in builtins outputing function.Peter Stephenson2015-06-056-39/+196
| | | | | | Also add to zed -f. Option is -x <numm>.
* 35360 (replacing 35357): fix for configuring zpty on FreeBSD withoutOliver Kiddle2015-06-031-1/+1
| | | | pty.ko loaded
* GLOB_ASSIGN should only affect scalar assignmentsMikael Magnusson2015-06-021-2/+2
|
* 35359: Improved math parsing and errors.Peter Stephenson2015-06-021-7/+14
| | | | | | Check for bogus trailing ")" at end of top-level parse. Extend some math error messages to indicate they are math errors.
* 35357: FreeBSD needs HAVE_POSIX_OPENPT for zptyBaptiste Daroussin2015-06-021-1/+1
|
* 35353: print -x and print -X expand tabsPeter Stephenson2015-06-022-6/+137
|
* 35343: Avoid $#name length handling for POSIX_IDENTIFIERSPeter Stephenson2015-05-311-1/+2
|
* users/20238: add "fc -L" to operate only on the local shell historyBarton E. Schaefer2015-05-301-10/+13
| | | | Also avoid invoking the editor on empty results.
* 35326: $#- was misparsed as ${#-}Peter Stephenson2015-05-291-1/+1
|
* 2037: ${functions[foo]} shouldn't be unmetafied.Peter Stephenson2015-05-291-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.
* 35318: POSIX_BUILTINS behaviour for getopts.Peter Stephenson2015-05-282-4/+12
| | | | | It needs to keep OPTIND, as well as the index within the string pointed to by OPTIND, global in this case.
* 35306: "test -z \(" failed due to parse confusionPeter Stephenson2015-05-271-8/+17
|
* 35127#1: Fix _describe/compdescribe problem with unsorted groupsDaniel Shahaf2015-05-232-7/+42
|
* Tweak test for function level of exit.Peter Stephenson2015-05-221-1/+1
| | | | | Sometimes local level jumps so we need an inequality instead of an equality.
* 35250: Fix case documentation (SH_GLOB)Peter Stephenson2015-05-211-2/+2
|
* 35248: treat fully parenthised zsh patterns as complete case patterns againPeter Stephenson2015-05-212-12/+85
|
* 35231: make mkevnstr() safe for NULL valueBarton E. Schaefer2015-05-201-5/+9
|
* 35193: Add "unalias -a".Peter Stephenson2015-05-182-7/+38
|
* 35184: Additional case fix for 35168.Peter Stephenson2015-05-181-2/+0
| | | | | Lexical analysis flags got screwed up after a "|", so we didn't parse patterns properly, in particular those with parentheses.
* 35168: Improve parsing of case patterns.Peter Stephenson2015-05-184-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.
* 35155: cmdpop() could be called erroneously on errorPeter Stephenson2015-05-151-2/+4
|
* 35153: nested math substitutionPeter Stephenson2015-05-151-2/+11
|
* 35151: improved check for parameter q and b flagsPeter Stephenson2015-05-151-1/+2
|
* 35131: allow "[]" to match empty character set.Peter Stephenson2015-05-151-1/+10
| | | | | This only works if there's no further "]" in the pattern, since if there is the first "]" has to match a literal character.
* Øystein Walle: 34841 (tweaked): allow grouping of thousands in printf ↵Oliver Kiddle2015-05-141-3/+3
| | | | format string
* 35110: don't implicitly initialize restricted integers to zeroPeter Stephenson2015-05-141-1/+6
|
* 35092: fix for numeric arguments from vi operator pending modeOliver Kiddle2015-05-131-1/+1
|
* 35114: zformat -a multibyte char widthsPeter Stephenson2015-05-131-0/+36
|
* users/20203: nested functions in always blocks when exit pendingPeter Stephenson2015-05-132-1/+15
|
* 35078: Add backslash quoting to parameter (b) flag from 35067.Peter Stephenson2015-05-111-1/+1
|
* 35067: Add (b) parameter flag for pattern char backslashing.Peter Stephenson2015-05-104-6/+42
| | | | | | Doc tweak from Daniel in 35071. Includes test.
* Don't treat NUL as a combining characterMikael Magnusson2015-05-101-2/+2
|
* 35064: rename ISPRINT to ZISPRINT to avoid conflictJun-ichi Takimoto2015-05-093-5/+5
|
* 35059: fix, document, test readonly -p.Peter Stephenson2015-05-081-70/+108
| | | | | | Don't output specials as can't be reconstructed. Output arrays in a useful order.
* 35054: readonly -p + POSIXBUILTINS fix.Peter Stephenson2015-05-071-2/+13
| | | | Now displays unset variables marekd readonly
* 35046: unwind cmdstack when erroring out of lexing a parameter expansion in ↵Barton E. Schaefer2015-05-061-1/+4
| | | | braces
* 35032: Handle SIGCONT for process better.Peter Stephenson2015-05-051-1/+3
| | | | Update job status as well as process status.