diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Completion/Unix/Command/_subversion | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 531784c39..d0fb08067 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2006-09-30 Clint Adams <clint@zsh.org> + * 22796: R. Ramkumar: Completion/Unix/Command/_subversion: + fix misspelling of IPREFIX. + * 22795: R. Ramkumar: Completion/Unix/Type/_urls: handle https urls. diff --git a/Completion/Unix/Command/_subversion b/Completion/Unix/Command/_subversion index 461eb0770..75f33e205 100644 --- a/Completion/Unix/Command/_subversion +++ b/Completion/Unix/Command/_subversion @@ -200,7 +200,7 @@ _svn_urls() { if [[ -prefix *: ]] && ! _urls && zstyle -T ":completion:${curcontext}:" remote-access then - remfiles=( ${(f)"$(svn list $IPRFIX${PREFIX%%[^./][^/]#} 2>/dev/null)"} ) + remfiles=( ${(f)"$(svn list $IPREFIX${PREFIX%%[^./][^/]#} 2>/dev/null)"} ) compset -P '*/' compset -S '/*' || suf=file remdispf=(${remfiles:#*/}) |