about summary refs log tree commit diff
path: root/Src/Modules
Commit message (Collapse)AuthorAgeFilesLines
* 34961: $TZ is implicitly local in builtin strftime (originally workers/34602 ↵Barton E. Schaefer2015-04-251-1/+20
| | | | from workers/34596)
* 34792: langinfo: Fix pointer typeTheo Buehler2015-03-291-1/+2
|
* 34455: Further gdbm parameter fixes.Peter Stephenson2015-02-031-12/+16
| | | | | | | Fix memory leak with name of parameter. Unset old parameter before opening db as it might close an existing db.
* 34447: fix assignment of key-value array to ztie'd parameter.Barton E. Schaefer2015-02-021-5/+56
| | | | | Add gdbmhashsetfn() for this purpose. Erases and reorganizes the database before bulk assign.
* 34446: add "ztie -r" and "zuntie -u", update documentationBarton E. Schaefer2015-02-011-12/+32
|
* 34439: unset variable about to be tiedPeter Stephenson2015-01-301-2/+15
|
* 34430: parameter fixes for gdbm tied hash.Peter Stephenson2015-01-291-6/+11
| | | | | | | | Probably fix the issue with correct parameter hiding or not hiding. A little extra safety checking. Possibly fixed a memory leak with untying.
* Unsetting gdbm tied variable basically works.Peter Stephenson2015-01-261-1/+25
| | | | | | | Allows variables in nested scope. However, explicitly untying a variable doesn't properly expose the scope above.
* 34350, 34353: document zsh/db/gdbm module, clean up a few things in the codeBarton E. Schaefer2015-01-251-20/+29
| | | | Still core dumps at this revision if the tied parameter is forced to be a local and is not untied before end of scope.
* 33876: etc.: Separate errors and keyboards interruptsPeter Stephenson2014-12-112-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Combination of 12 commits from interrupt_abort branch. Basic strategy is to introduce bits to errflag and to set and reset them separately. Remove interrupt status on return to main keymap. Turn off ERRFLAG_INT for always block. Restore bit thereafter: we probably need a new variable in order to allow user interrupts to be reset in the always block. Add TRY_BLOCK_INTERRUPT This works the same as TRY_BLOCK_ERROR, but for a SIGINT, too. Ensure propagation of SIGINT from exited job. If received by foreground job, shell uses ERRFLAG_INT, not ERRFLAG_ERROR, to set the new state. Reset errflag before precmd() Add always block in _main_completion to fix ZLS_COLORS Ensures we get the right state of $ZLS_COLORS at the end of _main_complete even if there's an interrupt. However, the "right state" is a bit messy as it depends on styles.
* 33785: Fix leaks of desthost in ztcpMikael Magnusson2014-11-241-0/+4
| | | | Found by coverity.
* 33743: use posix_openpt in zpty if it is availableOliver Kiddle2014-11-241-0/+4
|
* 33607: Fix some minor problems in zattr moduleMikael Magnusson2014-11-071-37/+30
| | | | | | | | | | | | | | | | | | | Remove the listattr call in zgetattr, it only caused no error to be output when trying to retrieve an xattr from a file with no xattrs. When a file had xattrs, it would just add an extra syscall for no good reason. Always set an array parameter in zlistattr, this makes the returned value much easier to use; in fact the _zattr completer didn't account for this and zlistattr foo <tab> on a file with only one attribute did not work. Almost all of the patch is only reindent, the only modification that's not a pure deletions is: - ret = 1 + (attr_len > val_len || attr_len < 0); + ret = 1 + ((val_len > 0 && attr_len > val_len) || attr_len < 0); which makes sure we return the correct error in the new path due to the removed listattr call. (If val_len is -1 due to no attribute existing, it doesn't mean the user should retry the call because the attribute grew in size).
* 33582: don't include tcp.mdh in zftp.c.Peter Stephenson2014-10-311-1/+0
| | | | | It's a private module definition header that doesn't need to be exposed.
* 33566: quash null pointer constant compiler warningJun T2014-10-291-1/+1
|
* 33294: $functions[func_with_redir] plus extra testsPeter Stephenson2014-09-301-11/+44
|
* users/19097: remove $functypetrace in favour of ref to $zsheval_contextPeter Stephenson2014-09-181-39/+0
|
* Add $functypestack special parameter in zsh/parameterPeter Stephenson2014-09-121-0/+39
|
* 33122: typo from 32891 caused incorrect matches for pcre_match -nBarton E. Schaefer2014-09-071-1/+1
|
* 33047: use git to simplify massively source distribution file selectionPeter Stephenson2014-08-231-59/+0
|
* missed updates to calls to ztrftime()Peter Stephenson2014-07-302-2/+2
|
* 32903: new empty (unset) elements in the special parameter hash tables are ↵Barton E. Schaefer2014-07-241-15/+15
| | | | special themselves
* 32898 (credit Jun T.): fix offset_start initialization bug in 32891Barton E. Schaefer2014-07-231-1/+1
|
* 32891: CASE_MATCH for =~ when using pcre; fix pcre_match with empty stringBarton E. Schaefer2014-07-201-7/+6
|
* 32468: save/restore match/mbegin/mend when doing pattern lookups against ↵Barton E. Schaefer2014-03-091-55/+61
| | | | zstyle contexts
* 32388: zparseopts -K preserves individual associative array elementsBarton E. Schaefer2014-02-151-2/+41
|
* 32131: avoid infinite loop reading pty on platforms that do not buffer ↵Jun T2013-12-161-2/+2
| | | | output after child exit
* unposted, see 32054: Rationalise character encoding.Peter Stephenson2013-11-272-10/+10
| | | | | | | | | | Shell functions are strictly ASCII for maximum portability. Other files within the distribution may contain UTF-8 characters. Exception for test files: where they need single character input with the top bit set, ISO-8859-X is used (X doesn't matter as we don't need the Euro).
* 31902: rationalise use of gamma function.Jun T2013-10-271-0/+9
| | | | | Make zsh/mathfunc consistent across systems and use tgamma() where available
* 31805: Add $patchars and $dis_patchars to zsh/parameter moduleMikael Magnusson2013-10-112-1/+41
|
* 31672: Add test that was failing and fix zpty set-up racePeter Stephenson2013-08-261-2/+28
|
* 31665: zpty should attach terminal on slave.Peter Stephenson2013-08-251-0/+3
| | | | Also add test.
* 31419: Add time zone and year to string formatted time output from zstatPeter Stephenson2013-05-211-2/+2
|
* 30726: make shell options passed to emulate stick along with the emulationPeter Stephenson2012-10-111-1/+1
|
* 30722: fix some cases where emulations or options were not propagated properlyPeter Stephenson2012-10-071-3/+3
| | | | from the emulate command
* 30513: zsh/regex metafy fixes for widecharPhil Pennock2012-06-161-7/+16
|
* 30307 plus tweak suggsted by Wayne: use %lld for zlong when long longPeter Stephenson2012-03-051-2/+18
|
* unposted: fix uninitialised variable warning in pcrePeter Stephenson2012-01-061-0/+1
|
* 29907: Jun T.: remove declaration of unused variablePeter Stephenson2011-11-171-1/+0
|
* Jun T: 29883: cast resource types to types they should be anywayPeter Stephenson2011-10-311-1/+1
|
* 29865: don't compile pcre if no pcre-configPeter Stephenson2011-10-261-1/+1
|
* 29838: metafy/unmetafy strings for PCRE matching (UTF-8 fixes)Phil Pennock2011-10-241-16/+45
|
* unposted: use pm->node.nam to get names for parameters in errorsPeter Stephenson2011-08-151-4/+6
|
* fix datetime autofeaturesPeter Stephenson2011-08-111-1/+1
|
* 29674: add $epochtime to datetimePeter Stephenson2011-08-111-1/+45
|
* 29663: add $EPOCHREALTIME to zsh/datetimePeter Stephenson2011-08-101-0/+27
|
* 29491: remove some variables set but not usedPeter Stephenson2011-06-191-6/+4
|
* 29382: apply 29374 to zccmd_input too.Bart Schaefer2011-05-271-2/+2
|
* 29312, users/16032: add "zparseopts -M"Bart Schaefer2011-05-181-3/+68
|
* Danek: 29254: fix some compiler warningsPeter Stephenson2011-05-132-1/+2
|