Package: zsh Version: 4.3.2-25 Severity: normal Tags: patch A missing backslash in /usr/share/zsh/4.3.2/functions/Completion/Unix/_git causes git-revert completion to fail.
-- System Information: Debian Release: 4.0 APT prefers stable APT policy: (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.18-5-686 (SMP w/2 CPU cores) Locale: LANG=C, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages zsh depends on: ii debconf [debconf-2.0] 1.5.11 Debian configuration management sy ii libc6 2.3.6.ds1-13etch2 GNU C Library: Shared libraries ii libncurses5 5.5-5 Shared libraries for terminal hand Versions of packages zsh recommends: ii libcap1 1:1.10-14 support for getting/setting POSIX. ii libpcre3 6.7+7.4-2 Perl 5 Compatible Regular Expressi -- debconf information: * zsh/rcmove:
--- _git.orig 2007-11-17 16:53:19.000000000 -0800 +++ _git 2007-11-17 16:53:32.000000000 -0800 @@ -877,7 +877,7 @@ _git-revert () { _arguments \ - '(-n --no-commit)'{-n,--no-commit}'[do not commit the reversion]' + '(-n --no-commit)'{-n,--no-commit}'[do not commit the reversion]' \ '(-r --replay)'{-r,--replay}'[use the original commit message intact]' \ ':commit:__git_revisions' && ret=0 }