# (C) 2013-2025 magicant

# Completion script for the "git-whatchanged" command.
# Supports Git 2.48.1.

function completion/git-whatchanged {
        WORDS=(git whatchanged "${WORDS[2,-1]}")
        command -f completion//reexecute
}

function completion/git::whatchanged:arg {

        if command -vf completion/git::log:arg >/dev/null 2>&1 ||
                        . -AL completion/git-log; then
                command -f completion/git::log:arg
        fi

}


# vim: set ft=sh ts=8 sts=8 sw=8 et:
