diff options
author | Dan McGee <dpmcgee@gmail.com> | 2011-04-05 00:40:23 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-04-04 23:20:39 -0700 |
commit | 7cd52b5b4bf3be1f5d33fed889af186aae1ea7b8 (patch) | |
tree | d66df4a57ed2cbf96816ae87205cb5c8283661fc /color.c | |
parent | 485cdb9bd8bd7de6c7099c1c3e9c6fca6a60fdd3 (diff) | |
download | git-7cd52b5b4bf3be1f5d33fed889af186aae1ea7b8.tar.gz |
Share color list between graph and show-branch
This also adds the new colors to show-branch that were added a while
back for graph output.
Signed-off-by: Dan McGee <dpmcgee@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'color.c')
-rw-r--r-- | color.c | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -3,6 +3,28 @@ int git_use_color_default = 0; +/* + * The list of available column colors. + */ +const char *column_colors_ansi[] = { + GIT_COLOR_RED, + GIT_COLOR_GREEN, + GIT_COLOR_YELLOW, + GIT_COLOR_BLUE, + GIT_COLOR_MAGENTA, + GIT_COLOR_CYAN, + GIT_COLOR_BOLD_RED, + GIT_COLOR_BOLD_GREEN, + GIT_COLOR_BOLD_YELLOW, + GIT_COLOR_BOLD_BLUE, + GIT_COLOR_BOLD_MAGENTA, + GIT_COLOR_BOLD_CYAN, + GIT_COLOR_RESET, +}; + +/* Ignore the RESET at the end when giving the size */ +const int column_colors_ansi_max = ARRAY_SIZE(column_colors_ansi) - 1; + static int parse_color(const char *name, int len) { static const char * const color_names[] = { |