diff options
author | Jeff King <peff@peff.net> | 2013-07-25 16:01:00 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-25 16:06:23 -0700 |
commit | 8f6a3e5d71fa1800c3f330bab2b6b6399ec7aea7 (patch) | |
tree | 720bebb63548eda9ffc8a7874bada39b64c5b542 /commit.h | |
parent | c490a6079021a3343ca5b042b37258858fdefbfc (diff) | |
download | git-8f6a3e5d71fa1800c3f330bab2b6b6399ec7aea7.tar.gz |
commit.h: drop redundant comment
We mention twice that the from_ident field of struct
pretty_print_context is internal.
The first comment was added by 10f2fbf, which prepares the
struct for internal fields, and then the second by a908047,
which actually adds such a field. This was a mistake made
when re-rolling the series on the list; the comment should
have been removed from the latter commit.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -102,8 +102,6 @@ struct pretty_print_context { * Fields below here are manipulated internally by pp_* functions and * should not be counted on by callers. */ - - /* Manipulated by the pp_* functions internally. */ struct string_list in_body_headers; }; |