1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-18 09:51:45 +02:00

53031: Completion/Unix/Command/_git: add missing terminator in case statement

This commit is contained in:
Christian Heusel 2024-08-13 22:32:34 -04:00 committed by Eric Cook
parent b2f24ff0d2
commit 8a811b369b
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2024-08-13 Eric Cook <llua@gmx.com>
* 53031: Christian Heusel: Completion/Unix/Command/_git: add
missing terminator in case statement
2024-08-06 Bart Schaefer <schaefer@zsh.org>
* Jun.T: 53026: Src/params.c: fix failure to free old value when

View File

@ -278,6 +278,7 @@ _git-bisect () {
_arguments -C -s \
$log_options \
$revision_options && ret=0
;;
(*)
_nothing
;;