From 3d5b13e82c314f1c70e1bc44cfe5291017b4bd79 Mon Sep 17 00:00:00 2001 From: Steven Schubiger Date: Mon, 13 May 2013 15:18:17 +0200 Subject: Add note in line printing function --- colorize.c | 1 + 1 file changed, 1 insertion(+) diff --git a/colorize.c b/colorize.c index 078554a..8514d4e 100644 --- a/colorize.c +++ b/colorize.c @@ -785,6 +785,7 @@ print_line (const struct color **colors, bool bold, const char *const line, unsi print_clean (line); else { + /* Foreground color code is guaranteed to be set when background color code is present. */ if (colors[BACKGROUND] && colors[BACKGROUND]->code) printf ("\033[%s", colors[BACKGROUND]->code); if (colors[FOREGROUND]->code) -- cgit v1.2.3