1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-02 22:11:54 +02:00

Mikael: 27642: missing glob qualifier completion

This commit is contained in:
Peter Stephenson 2010-01-31 19:48:42 +00:00
parent 0d8a580951
commit 1caf52f396
3 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2010-01-31 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Mikael: 27642: Completion/Zsh/Type/_globquals: add some
missing entries.
2010-01-29 Peter Stephenson <p.w.stephenson@ntlworld.com>
* users/14752: Functions/Misc/zed, Src/builtin.c: add #!
@ -12647,5 +12652,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.4875 $
* $Revision: 1.4876 $
*****************************************************

View file

@ -146,6 +146,9 @@ while [[ -n $PREFIX ]]; do
"m:last modification time"
"c:last inode change time"
"d:directory depth"
"N:no sorting"
"e:execute code"
"+:+ command name"
)
_describe -t sort-specifiers "sort specifier" alts -Q -S ''
return

View file

@ -46,7 +46,7 @@ for file in $allfuncs; do
fi
test -d $instdir || /bin/sh $sdir_top/mkinstalldirs $instdir || exit 1
$INSTALL_DATA $sdir_top/$file $instdir || exit 1
if test -x $sdir_top/$file; then
if sed -ne '1p' $sdir_top/$file | grep '^#!' >/dev/null; then
chmod +x $instdir/`echo $file | sed -e 's%^.*/%%'`
fi
fi