summaryrefslogtreecommitdiff
path: root/diff.h
diff options
context:
space:
mode:
authorGary V. Vaughan <git@mlists.thewrittenword.com>2010-05-14 09:31:35 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-05-31 23:59:27 (GMT)
commit4b05548fc0523744b7a1276cfa0f4aae19d6d9c9 (patch)
treebaf4bc01f49247b8811ed5d87dede2456e8b5eff /diff.h
parent48793cf46a286a21df420fdd7fc4b0c91c60a0c8 (diff)
downloadgit-4b05548fc0523744b7a1276cfa0f4aae19d6d9c9.zip
git-4b05548fc0523744b7a1276cfa0f4aae19d6d9c9.tar.gz
git-4b05548fc0523744b7a1276cfa0f4aae19d6d9c9.tar.bz2
enums: omit trailing comma for portability
Without this patch at least IBM VisualAge C 5.0 (I have 5.0.2) on AIX 5.1 fails to compile git. enum style is inconsistent already, with some enums declared on one line, some over 3 lines with the enum values all on the middle line, sometimes with 1 enum value per line... and independently of that the trailing comma is sometimes present and other times absent, often mixing with/without trailing comma styles in a single file, and sometimes in consecutive enum declarations. Clearly, omitting the comma is the more portable style, and this patch changes all enum declarations to use the portable omitted dangling comma style consistently. Signed-off-by: Gary V. Vaughan <gary@thewrittenword.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diff.h')
-rw-r--r--diff.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/diff.h b/diff.h
index 6a71013..965b6c2 100644
--- a/diff.h
+++ b/diff.h
@@ -133,7 +133,7 @@ enum color_diff {
DIFF_FILE_NEW = 5,
DIFF_COMMIT = 6,
DIFF_WHITESPACE = 7,
- DIFF_FUNCINFO = 8,
+ DIFF_FUNCINFO = 8
};
const char *diff_get_color(int diff_use_color, enum color_diff ix);
#define diff_get_color_opt(o, ix) \