about summary refs log tree commit diff
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* 31902: rationalise use of gamma function.Jun T2013-10-271-0/+5
| | | | | Make zsh/mathfunc consistent across systems and use tgamma() where available
* 31890 + 31891: Add NEWS for new features since 5.0.2Peter Stephenson2013-10-251-0/+5
|
* 31885: fix PIPEFAIL when the last command executes in the current shellBarton E. Schaefer2013-10-241-1/+6
|
* 31889: tests for disable -pPeter Stephenson2013-10-241-0/+2
|
* 31877: fix behaviour of disable -p with parenthesesPeter Stephenson2013-10-241-0/+5
|
* 31888: Add another test for pipestatus.Peter Stephenson2013-10-241-0/+3
| | | | This one was reliably failing before the fix, see zsh-workers-31870
* 31882: Insulate completion widget against environment.Peter Stephenson2013-10-241-0/+3
| | | | Prevents change in pipestatus leaking back out.
* 31884: Make new pipestatus test implementation proof.Peter Stephenson2013-10-241-0/+5
| | | | It seems uniq's vary in the number of spaces they output.
* 31879 plus misc.: improve $pipestatus handling and add a test for itBarton E. Schaefer2013-10-231-0/+8
|
* 31873: Document conventions for command options in builtinsPeter Stephenson2013-10-231-0/+5
|
* Merge branch 'master' of git://git.code.sf.net/p/zsh/codeBarton E. Schaefer2013-10-211-0/+49
|\ | | | | | | | | Conflicts: ChangeLog
| * 31865: _git: Make --batch(-check) accept an argumentØystein Walle2013-10-211-0/+3
| | | | | | | | | | Also reword the explanation slightly to make it more compact since more explanation is needed.
| * 31864: _git: Add two sub-comamnds introduced in v1.8.4Øystein Walle2013-10-211-0/+3
| | | | | | | | Add _git-check-ignore() and _git-check-mailmap()
| * 31866: _git: Reword --heads to match new meaningØystein Walle2013-10-211-0/+3
| |
| * 31862: _git: Add status.short and status.branchØystein Walle2013-10-211-0/+3
| |
| * 31863: _git: Add new arguments introduced in Git v1.8.4Øystein Walle2013-10-211-0/+3
| |
| * 31861: _git: Add git-clean -i/--interactive supportØystein Walle2013-10-211-0/+5
| | | | | | | | | | - Add -i and --interactive to _git-clean() - Add column.clean configuration variable
| * 31855: _git: revert: add '-e,--edit'm0viefreak2013-10-211-0/+3
| |
| * 31856: _git: fix a few "undocumented" optionsm0viefreak2013-10-211-0/+5
| | | | | | | | | | | | | | commit: '--null' is documented relink: '-h,--help' are never documented for subcommands but always exist verify-tag: '-v,--verbose' are documented with updated description diff: '--cumulative' is deprecated -> remove
| * 31858: _git: fix wrong default valueØystein Walle2013-10-211-0/+5
| |
| * 31857: _git: Remove unsupported -q option from diff optionsm0viefreak2013-10-211-0/+5
| |
| * 31859: _git: re-order the last two git-blame argumentsØystein Walle2013-10-211-0/+3
| | | | | | | | The proper syntax is git blame [<commit>] <file> where <commit> is optional.
| * 31854: _git: Make git-show accept diff argumentsØystein Walle2013-10-211-0/+3
| |
| * 31853: _git: Add missing column.* config variablesØystein Walle2013-10-211-0/+5
| |
* | 31869: reduce WINCH-twaddling in shingetline()Barton E. Schaefer2013-10-211-0/+4
|/
* Fix merge conflictPeter Stephenson2013-10-191-0/+5
|\
| * 31849: document effect of KSH_ZERO_SUBSCRIPT on the argv special arrayBarton E. Schaefer2013-10-191-0/+5
| |
* | Use VERBOSE option in execstring()Peter Stephenson2013-10-191-0/+5
|/
* 31846: fix NOEXEC option in execsimple() optimisationPeter Stephenson2013-10-181-0/+4
|
* 31840: "read" needs IFS unset to avoid stripping whitespace in makefilesBarton E. Schaefer2013-10-181-0/+4
|
* 31832: make execrestore() more signal-safe.Bart Schaefer2013-10-171-0/+2
|
* 31823: add HISTORY_IGNORE parameterBarton E. Schaefer2013-10-171-0/+6
| | | | | HISTORY_IGNORE defines a pattern to exclude matching lines in the internal history from the HISTFILE at write time.
* 31830: New feature for zshaddhistory hooks.Peter Stephenson2013-10-171-0/+6
| | | | | If the first non-zero return status is 2, save the line on the internal history list, but don't write it out.
* Users/18033: Documentation for exit and ERR_EXIT.Peter Stephenson2013-10-161-0/+6
| | | | | Notes about interaction with asynchronous jobs such as process substitution and multios.
* 31872: zshaddhistory hook example needs options.Peter Stephenson2013-10-161-0/+5
| | | | Only works with INCAPPENDHISTORY or SHAREHISTORY set.
* Fix trivial typo in zshaddhistory doc.Peter Stephenson2013-10-151-0/+4
|
* 31818: fix completion for zsh in _sh, and document the _arguments behavior ↵Barton E. Schaefer2013-10-121-0/+7
| | | | | | | | that made the fix necessary To avoid side effects, reposition the _arguments call in _sh for the zsh special case. Document the side effects so avoided, and clean up the _arguments documentation a bit along the way.
* Update ChangeLog with previous commitsMikael Magnusson2013-10-111-6/+21
|
* 31815: another fix for INCAPPENDHISTORY change.Peter Stephenson2013-10-111-0/+5
| | | | | We need to save immediately if something is pushed on the history stack to ensure we use the right file before popping.
* 31810: tests for simple XTRACE output from conditionsPeter Stephenson2013-10-101-0/+3
|
* 31809: Make whitespace clear in trace output for patterns.Peter Stephenson2013-10-101-0/+5
|
* 31801: missing local declaration for variables in completionEric Cook2013-10-081-0/+5
|
* 31797: to match documentation, avoid expanding history when there is neither aBarton E. Schaefer2013-10-081-0/+9
| | | | | | | | | word nor an event designator There are still a few cases where expansion is attempted even though the documentation indicates it will not be, but in most of those cases the expansion will fail. The now-fixed case would fall back to default expansion of the previous command.
* 31794: further refinement to INCAPPENDHISTORY change.Peter Stephenson2013-10-071-0/+3
| | | | | | With SHAREHISTORY we should make sure the code behaves as it always did, because it takes care about locking a file once for reading and writing.
* 31793: Fix problem with non-interactive history.Peter Stephenson2013-10-071-0/+5
| | | | | Modify 31789 so it doesn't try to save history from hbegin() in that case.
* Add new options for rsync 3.1.0.Wayne Davison2013-10-061-0/+5
|
* users:18023: Add PIPEFAIL optionPeter Stephenson2013-10-061-0/+5
|
* 31789: Save history for INCAPPENDHISTORY later.Han Pingtian2013-10-051-0/+5
| | | | This improves the timing recorded in the history.
* 31784: better line width calculation for completion listingsBarton E. Schaefer2013-10-031-0/+6
| | | | | | | When deciding whether there is enough horizontal space to show completion descriptions for each match in a listing, treat the separator as part of the description rather than as part of the match, and account for lines that have already wrapped due to very long matches.
* 31781: "compdescribe -i" clears the completion list column padding widthBarton E. Schaefer2013-10-031-0/+6
|