Code

Document struct match_attr
authorMichael Haggerty <mhagger@alum.mit.edu>
Fri, 12 Aug 2011 21:43:05 +0000 (23:43 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sun, 14 Aug 2011 22:01:58 +0000 (15:01 -0700)
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
attr.c

diff --git a/attr.c b/attr.c
index 6bc7ae91926ab7eca25816ddc52d698f71ce17fa..c33e4135c3aa8c4713f5c813b4fe08ccf4bd7110 100644 (file)
--- a/attr.c
+++ b/attr.c
@@ -113,6 +113,20 @@ struct attr_state {
        const char *setto;
 };
 
+/*
+ * One rule, as from a .gitattributes file.
+ *
+ * If is_macro is true, then u.attr is a pointer to the git_attr being
+ * defined.
+ *
+ * If is_macro is false, then u.pattern points at the filename pattern
+ * to which the rule applies.  (The memory pointed to is part of the
+ * memory block allocated for the match_attr instance.)
+ *
+ * In either case, num_attr is the number of attributes affected by
+ * this rule, and state is an array listing them.  The attributes are
+ * listed as they appear in the file (macros unexpanded).
+ */
 struct match_attr {
        union {
                char *pattern;