about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* Release 4.3.2 zsh-4.3.2Peter Stephenson2006-03-024-5/+16
|
* 22313Wayne Davison2006-03-011-0/+5
|
* Added "mod_export" to the declaration of makecommaspecial().Wayne Davison2006-03-011-1/+1
|
* 22036: fix warning from testPeter Stephenson2006-03-012-1/+4
|
* 22309: update for new surfraw debsec elvi.Clint Adams2006-02-282-0/+8
|
* Release 4.3.1, finally (updated...) zsh-4.3.1Peter Stephenson2006-02-283-7/+17
|
* Release 4.3.1, finallyPeter Stephenson2006-02-282-2/+4
|
* add missing .distfilesPeter Stephenson2006-02-282-36/+41
|
* 22305: no default for pine-directoryPeter Stephenson2006-02-285-14/+39
| | | | unposted: a couple of small doc fixes
* Mention the latest _rsync tweaks.Wayne Davison2006-02-281-1/+1
|
* Added --no-H and --no-hard-links.Wayne Davison2006-02-281-0/+1
|
* _arguments -S for _schrootClint Adams2006-02-272-3/+3
|
* 22302: completion for schroot.Clint Adams2006-02-263-3/+42
|
* One more _rsync tweak.Wayne Davison2006-02-241-0/+5
|
* Added --copy-dirlinks option.Wayne Davison2006-02-241-0/+1
|
* 22298: completion for diffstatClint Adams2006-02-222-0/+24
|
* 22294: add GNU libc confstrings to getconf completion.Clint Adams2006-02-202-0/+10
|
* unposted: add _linda to C/D/C/.distfiles.Clint Adams2006-02-202-4/+8
|
* unposted: update config.guess and config.sub to 2005-08-03 and 2005-07-08, ↵Clint Adams2006-02-203-284/+307
| | | | respectively.
* unposted: 4.3.0-dev-5 zsh-4.3.0-dev-5Peter Stephenson2006-02-202-3/+7
|
* Optimized away a recently-added call to strlen().Wayne Davison2006-02-201-1/+1
|
* 22289: completion for linda.Clint Adams2006-02-202-0/+31
|
* One last compcore tweak.Wayne Davison2006-02-201-0/+3
|
* Made the realocation of the line buffer in add_match_data() use aWayne Davison2006-02-191-8/+9
| | | | little more optimal size. Also tweaked the code just a little.
* 22285: assorted fixes:Peter Stephenson2006-02-195-6/+30
| | | | | | | _imagemagick files intro.yo list of other manual pages pick-web-browser: add firefox zsh-mime-setup: list consistent with styles for zsh-mime-handler
* 22284: add --disable-dynamic-nss configure switch to disable use of ↵Clint Adams2006-02-198-13/+62
| | | | getpw*(), getgr*(), initgroups() functions.
* Another _rsync tweak.Wayne Davison2006-02-191-1/+6
|
* Added the missing -h option for --daemon mode.Wayne Davison2006-02-191-1/+2
|
* users/9936Wayne Davison2006-02-181-0/+5
|
* The code in add_match_data() that looks for invalid charactersWayne Davison2006-02-181-25/+26
| | | | now properly parses the string as metafied.
* A few more minor D04parameter.ztst additions.Wayne Davison2006-02-171-0/+4
|
* Make sure that the (A) assignment of a single-item array retainsWayne Davison2006-02-171-1/+22
| | | | | its arrayness. Also ensure that the array/scalar type of each assigned variable is correct.
* Weed out hashed-entry lines from the known_hosts file.Wayne Davison2006-02-161-0/+3
|
* Weed out hashed host lines that start with a '|' since they'reWayne Davison2006-02-161-1/+1
| | | | completely useless for completion.
* 22275Wayne Davison2006-02-161-0/+3
|
* A few more improvements about word splitting.Wayne Davison2006-02-161-5/+9
|
* The rest of 22273.Wayne Davison2006-02-161-1/+3
|
* Test that ${(A)=name:=word} avoids splitting on quoted whitespace.Wayne Davison2006-02-161-1/+2
|
* Made ${(A)=name:=word} (which is an array assignment) not split onWayne Davison2006-02-161-14/+10
| | | | quoted whitespace, just like the new ${1+"$@"} handling.
* 22273 (1st hunk) to fix a typo in README.Wayne Davison2006-02-161-0/+4
|
* Changed "following" to "preceding".Wayne Davison2006-02-161-1/+1
|
* 22272: 4.3.0-dev-4 zsh-4.3.0-dev-4Peter Stephenson2006-02-166-20/+82
|
* 22270Wayne Davison2006-02-151-0/+5
|
* Added a test for ${name+$array$scalar}.Wayne Davison2006-02-151-0/+5
|
* Fixed another ${name+word} problem when word consisted of anWayne Davison2006-02-151-29/+19
| | | | array followed by a scalar. Also updated several comments.
* unposted: fix _perforce to allow matching control on files from p4 outputPeter Stephenson2006-02-152-28/+78
|
* 22268: ${1+"$@"} fix.Wayne Davison2006-02-151-0/+7
|
* Document that quoting may be used in the word portion of theWayne Davison2006-02-151-1/+5
| | | | ${name:+word} and ${name:-word} expansions.
* - Some changes to handle ${1+"$@"} being fixed.Wayne Davison2006-02-151-13/+149
| | | | - Added quite a few new tests.
* - Fixed: setopt shwordsplit; set 1 '2 3' 4; print -l ${1+"$@"}Wayne Davison2006-02-151-36/+89
| | | | | | - Fixed: setopt shwordsplit; foo='1 2'; print -l ${==foo+$foo} - Fixed: emulate sh; touch '1 2'; print -l ${1:-*\ *} - Improved multsub() and its comments.