diff options
author | Christian Heusel <christian@heusel.eu> | 2024-08-13 22:32:34 -0400 |
---|---|---|
committer | Eric Cook <illua@users.sourceforge.net> | 2024-08-13 22:32:34 -0400 |
commit | 8a811b369b8c7338a90bb85e12bc9f0cfb2b6b6d (patch) | |
tree | bb6ab8acf2bc99d0dd22d0148e7fc58b91e07e59 /Completion | |
parent | b2f24ff0d2a9631f331c1841491ce60e69c20ca6 (diff) | |
download | zsh-8a811b369b8c7338a90bb85e12bc9f0cfb2b6b6d.tar.gz zsh-8a811b369b8c7338a90bb85e12bc9f0cfb2b6b6d.zip |
53031: Completion/Unix/Command/_git: add missing terminator in case statement
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Command/_git | 1 |
1 files changed, 1 insertions, 0 deletions
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 ;; |