diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-04-15 18:14:01 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-04-15 18:14:01 +0000 |
commit | 850fb2e7f94b4e0e9fbf3538ad9e3c44c9fed74b (patch) | |
tree | a09f4376fe75073ed19fb5dd1de0fce4c898adb9 /Functions | |
parent | 7a40d6c258ad87d147ee5d6839e746c33ebc0ac7 (diff) | |
download | zsh-850fb2e7f94b4e0e9fbf3538ad9e3c44c9fed74b.tar.gz zsh-850fb2e7f94b4e0e9fbf3538ad9e3c44c9fed74b.tar.xz zsh-850fb2e7f94b4e0e9fbf3538ad9e3c44c9fed74b.zip |
zsh-3.1.5-pws-7 zsh-3.1.5-pws-7
Diffstat (limited to 'Functions')
-rw-r--r-- | Functions/zls | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Functions/zls b/Functions/zls index f2299903c..22138cd6c 100644 --- a/Functions/zls +++ b/Functions/zls @@ -32,7 +32,7 @@ local time=mtime tmod=m if ((! ARGC)) then if [[ $opts = *t* ]]; then - set *(O$tmod) + set *(o$tmod) else set * fi @@ -44,7 +44,7 @@ elif [[ $opts = *t* && $ARGC -gt 1 ]]; then for (( f = 2; f <= $ARGC; f++ )); do n="$n|\$$f" done - eval "argv=(($n)(O$tmod))" + eval "argv=(($n)(o$tmod))" fi for f in $* |