=== modified file 'zsh-functions/confz_fileset_init' --- zsh-functions/confz_fileset_init 2016-03-15 13:29:49 +0000 +++ zsh-functions/confz_fileset_init 2016-03-15 13:17:14 +0000 @@ -36,14 +36,14 @@ local id ret ftype fperm id=${fileset_stat_cache[$1]:-missing} if [[ $id == missing ]]; then - zstat -L -H fileset_stat_$fileset_stat_next_id $1 >/dev/null + zstat -L -H fileset_stat_$fileset_stat_next_id $1 ret=$? if (($ret == 0)); then - fileset_stat_cache[$1]=$fileset_stat_next_id + fileset_stat[$1]=$fileset_stat_next_id fileset_stat_set_cur $fileset_stat_next_id fileset_stat_next_id=$[ $fileset_stat_next_id + 1 ] else - fileset_stat_cache[$1]=-$ret + fileset_stat[$1]=-$ret fi return $ret elif (( $id >= 0 )); then