diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 2000-05-03 11:25:12 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-05-03 11:25:12 +0000 |
commit | 0a36137ddafa0b03a35e19d1ccc3c31959c71794 (patch) | |
tree | 183db49193be8f3734cbbdf7664769fb0d3ed656 /Completion | |
parent | e6a6cab83cf81e1cae7417d4555ed58514375ef1 (diff) | |
download | zsh-0a36137ddafa0b03a35e19d1ccc3c31959c71794.tar.gz zsh-0a36137ddafa0b03a35e19d1ccc3c31959c71794.tar.xz zsh-0a36137ddafa0b03a35e19d1ccc3c31959c71794.zip |
11106: Completion/User/_mount: fix glob for device files.
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/User/_mount | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/User/_mount b/Completion/User/_mount index 0d8d0996f..b0d20ca98 100644 --- a/Completion/User/_mount +++ b/Completion/User/_mount @@ -554,7 +554,7 @@ devordir) _message "no device or directory with option \`-a'" else _alternative \ - 'devices:device:compadd /dev/\*' \ + 'devices:device:{compadd "$expl[@]" /dev/*}' \ 'directories:mount point:_files -/' && ret=0 fi ;; |