diff options
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r-- | Completion/Unix/Command/_git | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index a0ec3434a..fb9cae1b6 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -5657,7 +5657,7 @@ __git_commit_objects () { declare -a commits # Abort if the argument does not match a commit hash (including empty). - _guard '[[:xdigit:]](#c,40)' || return 1 + [[ "$PREFIX$SUFFIX" == [[:xdigit:]](#c1,40) ]] || return 1 # Note: the after-the-colon part must be unique across the entire array; # see workers/34768 |