Index: Completion/Unix/Command/_mount =================================================================== RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_mount,v retrieving revision 1.18 diff -b -u -r1.18 _mount --- Completion/Unix/Command/_mount 20 Feb 2004 10:57:11 -0000 1.18 +++ Completion/Unix/Command/_mount 1 Feb 2005 01:01:32 -0000 @@ -794,7 +794,7 @@ esac ;; udevordir) - local dev_tmp mp_tmp mline + local dev_tmp mp_tmp mline match case "$OSTYPE" in linux*|irix*) @@ -810,6 +810,9 @@ ;; esac + mp_tmp=(${mp_tmp//(#b)(\\([0-7]##|\\))/$(print $match[1])}) + dev_tmp=(${dev_tmp//(#b)(\\([0-7]##|\\))/$(print $match[1])}) + _alternative \ 'devices:device:compadd -a dev_tmp' \ 'directories:mount point:compadd -a mp_tmp' && ret=0