From 8a811b369b8c7338a90bb85e12bc9f0cfb2b6b6d Mon Sep 17 00:00:00 2001 From: Christian Heusel Date: Tue, 13 Aug 2024 22:32:34 -0400 Subject: [PATCH] 53031: Completion/Unix/Command/_git: add missing terminator in case statement --- ChangeLog | 5 +++++ Completion/Unix/Command/_git | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 667f17177..1ed2100f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-08-13 Eric Cook + + * 53031: Christian Heusel: Completion/Unix/Command/_git: add + missing terminator in case statement + 2024-08-06 Bart Schaefer * Jun.T: 53026: Src/params.c: fix failure to free old value when diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 22b945e38..6c6d59b24 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -278,6 +278,7 @@ _git-bisect () { _arguments -C -s \ $log_options \ $revision_options && ret=0 + ;; (*) _nothing ;;