diff options
author | Clint Adams <clint@users.sourceforge.net> | 2008-01-04 20:18:38 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2008-01-04 20:18:38 +0000 |
commit | 2a1d7a11aafb01ccae97f6f6bb21e1f9ec249af8 (patch) | |
tree | 0861fdb1f3d99f65f749cb18dc2c7c19c0d6083d | |
parent | 7d9ead9a469792959c90ec1df091e2e10b9fc11d (diff) | |
download | zsh-2a1d7a11aafb01ccae97f6f6bb21e1f9ec249af8.tar.gz zsh-2a1d7a11aafb01ccae97f6f6bb21e1f9ec249af8.tar.xz zsh-2a1d7a11aafb01ccae97f6f6bb21e1f9ec249af8.zip |
24360: fix misspelling of --separate-dirs.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_du | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 902ff8275..95487b95e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-01-04 Clint Adams <clint@zsh.org> + + * 24360: Completion/Unix/Command/_du: fix misspelling of + --separate-dirs. + 2008-01-04 Peter Stephenson <pws@csr.com> * 25356: Src/text.c, Test/C02cond.ztst: "=~" wasn't handled by diff --git a/Completion/Unix/Command/_du b/Completion/Unix/Command/_du index 0486cac7c..11122f3a4 100644 --- a/Completion/Unix/Command/_du +++ b/Completion/Unix/Command/_du @@ -13,7 +13,7 @@ if _pick_variant gnu=Free\ Soft unix --version /dummy/no-such-file; then '(-B --block-size)-k[use block size of 1k]' \ '(-l --count-links)'{-l,--count-links}'[count sizes many times if hard linked]' \ '(-L --dereference -D --dereference-args)'{-L,--dereference}'[dereference all symlinks]' \ - '(-S --separate-dirs)'{-S,--seperate-dirs}'[do not include size of subdirectories]' \ + '(-S --separate-dirs)'{-S,--separate-dirs}'[do not include size of subdirectories]' \ '(-s --summarize --max-depth -a --all)'{-s,--summarize}'[only display total for each argument]' \ '(-x --one-file-system)'{-x,--one-file-system}'[skip directories on different filesystems]' \ \*{-X+,--exclude-from=}'[exclude files matching any pattern in file]:file:_files' \ |