]> git.ipfire.org Git - thirdparty/git.git/commitdiff
advice: fix an unexpected leading space
authorRubén Justo <rjusto@gmail.com>
Thu, 11 Jan 2024 12:40:17 +0000 (13:40 +0100)
committerJunio C Hamano <gitster@pobox.com>
Fri, 12 Jan 2024 01:15:54 +0000 (17:15 -0800)
This space was introduced, presumably unintentionally, in b3b18d1621
(advice: revamp advise API, 2020-03-02)

I notice this space due to confuse diff outputs while doing some
changes to enum advice_type.

As a reference, a recent change we have to that enum is:

    $ git show 35f0383

    ...
    diff --git a/advice.h b/advice.h
    index 0f584163f5..2affbe1426 100644
    --- a/advice.h
    +++ b/advice.h
    @@ -49,6 +49,7 @@ struct string_list;
    ADVICE_UPDATE_SPARSE_PATH,
    ADVICE_WAITING_FOR_EDITOR,
    ADVICE_SKIPPED_CHERRY_PICKS,
    +       ADVICE_WORKTREE_ADD_ORPHAN,
     };

Note the hunk header, instead of a much more expected:

    @@ -49,6 +49,7 @@ enum advice_type

Signed-off-by: Rubén Justo <rjusto@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
advice.h

index 9396bcdcf18d9db99102e065371468c4f42be711..74d44d115654fdc6cfa72f51ce3f76c3321663b2 100644 (file)
--- a/advice.h
+++ b/advice.h
@@ -10,7 +10,7 @@ struct string_list;
  * Add the new config variable to Documentation/config/advice.txt.
  * Call advise_if_enabled to print your advice.
  */
- enum advice_type {
+enum advice_type {
        ADVICE_ADD_EMBEDDED_REPO,
        ADVICE_ADD_EMPTY_PATHSPEC,
        ADVICE_ADD_IGNORED_FILE,