summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)AuthorFilesLines
2015-10-1136834: freeheap preserves last allocated heapBarton E. Schaefer1-0/+4
This is the first of two optimizations to improve heap performance when there are a large number of mostly-filled heap arenas.
2015-10-1136832: vcs_info: Remove dependency on "seq"Frank Terbeck1-0/+3
The "seq" utility is usually available on GNU systems only. This exchanges calls to seq with pure zsh features. Also: Less forks are good.
2015-10-1136830: vcs_info: Silence an error message with new git versionsFrank Terbeck1-0/+5
Mikael informs me on IRC, that in new versions of git (he used 2.6.1) where the "am" subcommand is now a builtin, a file that is used by the git backend of vcs_info (namely .git/rebase-apply/msg-clean) is not available anymore, leading to an annoying error message: VCS_INFO_get_data_git:232: no such file or directory: .git/rebase-apply/msg-clean This patch checks for the availabiliy of the file before using it, and adjusts the value of the dependant values accordingly.
2015-10-0636780: Fix crash in ksh mode with -n and $HOME.Peter Stephenson1-0/+5
If home variable is NULL ensure HOME is unset.
2015-10-0436773: limit CORRECT / CORRECT_ALL to directory names in cases where it is ↵Barton E. Schaefer1-0/+5
obvious that a directory is expected
2015-10-03unposted: back out 36707, add test case for 36766Barton E. Schaefer1-0/+4
2015-10-0336766: fix incorrect reset of noerrexit during "if" conditionsBarton E. Schaefer1-0/+5
2015-10-0336760: more care with already unmetafied pattern trial stringsPeter Stephenson1-0/+5
2015-10-0336754: Functions/TCP: Tweak some usage output in the tcp_* functionsMikael Magnusson1-0/+6
2015-10-0236732: _zsh now complets script args; also support -s, -bJun-ichi Takimoto1-0/+5
2015-10-0136737: Ensure we don't dreference unterminated zero-length stringPeter Stephenson1-0/+3
2015-10-0136735: add ~/.zcalcrc handling to zcalcPeter Stephenson1-0/+2
2015-10-0136729: fix some typos in distro docsAndrew Janke1-0/+2
2015-10-0136722: allow git range to complete after ^.Peter Stephenson1-0/+5
Take account of backslash quoting.
2015-10-01Merge branch 'master' of https://git.code.sf.net/p/zsh/codePeter Stephenson1-0/+37
2015-09-30users/20672: missing "do" in gettext2() for "select"Barton E. Schaefer1-0/+2
2015-09-3036707: distinguish ERR_RETURN value of retflag so that execif() can ignore ↵Barton E. Schaefer1-0/+3
it in the test sublist
2015-09-30remove sentence fragmentBarton E. Schaefer1-0/+4
2015-10-0136692: bracketed-paste-url-magic: simpler alternative for handling pasted urlsMikael Magnusson1-0/+3
2015-10-0136709: zle -f from inside widget to set flags and make yank start/end zle ↵Mikael Magnusson1-0/+7
params writable
2015-09-3036725: vcs_info git: Compute %b correctly when "git am"-ing onto detached heads.Daniel Shahaf1-0/+4
Before this patch, $gitbranch would be set to empty, which caused VCS_INFO_get_data_git to early out with a failure status¹, consequently $vcs_info_msg_0_ would be empty. ¹ via the 'if [[ -z ]]' block around line 170.
2015-09-3036725: vcs_info git: Compute %b correctly when rebasing detached heads.Daniel Shahaf1-0/+3
This sets the %b expando to the hash of the before-the-merge HEAD, rather than to the literal string "detached HEAD". That hash is already available via the gen-applied-string hook.
2015-09-3036725: vcs_info git: Compute %b correctly when merging to detached heads.Daniel Shahaf1-0/+6
The %b expando should be the hash prior to the merge. The hash of the merge result is available as the %i expando and via the gen-applied-string hook.
2015-09-3036697: handle options of _arguments correctlyJun-ichi Takimoto1-0/+5
2015-09-3036693: arithmetic rounds towards zero, documentMatthew Martin1-0/+3
2015-09-3036711: Allocate unmetafied pattern trial string on the heapPeter Stephenson1-0/+5
2015-09-2836682: expand pattern interface to optimise unmetaficationPeter Stephenson1-0/+6
2015-09-28unposted: Test for 36669Daniel Shahaf1-0/+4
2015-09-2836601: vcs_info: handle missing .git/rebase-apply/{next,msg-clean}Daniel Hahler1-0/+5
When pressing Ctrl-C after `git am`, only `last` exists in `.git/rebase-apply/`, which is empty. This patch fixes it to fall back to "no patch applied" then.
2015-09-2736669: fix ${(z)...} of an an incomplete math expression by restoring "((" ↵Barton E. Schaefer1-0/+5
at the front of the token
2015-09-28unposted: Update link to my ChangeLog generator script,Daniel Shahaf1-0/+6
on account of patching it to handle commas properly (thanks Mikael).
2015-09-28unposted: Fix broken case condition and "qualifer" typoMikael Magnusson1-5/+10
2015-09-2736651: WARN_CREATE_GLOBAL += math expressionsDaniel Shahaf1-0/+5
Without this, '() { (( x=42 )) }' and '() { for (( i=0; … )) }' wouldn't warn about $x and $i, respectively, being created global.
2015-09-2736653: OpenBSD's usermod has no -a flagMatthew Martin1-0/+5
2015-09-2736663: replace obsolete "autobins" commentary with "autofeatures"Barton E. Schaefer1-0/+3
2015-09-2736661: replace obsolete "autobins" setting with "autofeatures"Barton E. Schaefer1-0/+5
2015-09-2836631: separate _zsh from _shJun-ichi Takimoto1-0/+5
Do all the completion for zsh by _arguments
2015-09-2636641: fix multibyte handling in incremental search during menu selectionBarton E. Schaefer1-0/+5
2015-09-26unposted (see 36633): _hg: Enable --option=value syntax and disable '-xy ↵Daniel Shahaf1-0/+5
Xarg Yarg' syntax This simply removes the '-w' argument to _arguments and changes {-x+,--foo} to {-x+,--foo=} throughout the file.
2015-09-25unposted: zle: Document the C helper function processcmd().Daniel Shahaf1-0/+5
Also, tweak the docstring of zlelineasstring().
2015-09-2536626: _hg: completion for 'hg bookmarks'Christoph Mathys1-0/+5
2015-09-2536630: new function zsh_directory_name_genericPeter Stephenson1-0/+5
2015-09-2436623: document bracketed-paste-magic and url-quote-magic; add ↵Barton E. Schaefer1-0/+5
cross-reference to vim text object widgets
2015-09-2436603: glob: fix dirfd leak during Y shortcut qualifierMikael Magnusson1-4/+7
2015-09-24unposted: _hg: Declare $expl as an arrayDaniel Shahaf1-0/+5
2015-09-2436613: _hg: extend completion for hg push to support branch and bookmarkChristoph Mathys1-0/+5
2015-09-2336604: fix getopts+shift calculationBarton E. Schaefer1-0/+4
2015-09-23unposted: Followup to 36586: Change C99 comment syntax to the C89 syntax.Daniel Shahaf1-0/+5
2015-09-2336571: Completion for zsocket and updated losetup's completionEric Cook1-0/+6
2015-09-23unposted: replace multi-byte curly-quotes with plain quotes in ChangeLog entryMikael Magnusson1-1/+1