Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] eselect r682 - trunk/libs
Date: Wed, 07 Oct 2009 12:59:10
Message-Id: E1MvW6m-0003g2-8y@stork.gentoo.org
1 Author: ulm
2 Date: 2009-10-07 12:59:07 +0000 (Wed, 07 Oct 2009)
3 New Revision: 682
4
5 Modified:
6 trunk/libs/output.bash.in
7 Log:
8 Add comments for colours.
9
10 Modified: trunk/libs/output.bash.in
11 ===================================================================
12 --- trunk/libs/output.bash.in 2009-10-06 05:50:15 UTC (rev 681)
13 +++ trunk/libs/output.bash.in 2009-10-07 12:59:07 UTC (rev 682)
14 @@ -19,10 +19,10 @@
15 colours() {
16 COLOUR_NORMAL=$(tput sgr0)
17 COLOUR_BOLD=$(tput bold)
18 - COLOUR_HI=$(tput setaf 4)${COLOUR_BOLD}
19 - COLOUR_WARN=$(tput setaf 1)${COLOUR_BOLD}
20 + COLOUR_HI=$(tput setaf 4)${COLOUR_BOLD} # blue
21 + COLOUR_WARN=$(tput setaf 1)${COLOUR_BOLD} # red
22 COLOUR_ERROR=${COLOUR_WARN}
23 - COLOUR_LIST_HEADER=$(tput setaf 2)${COLOUR_BOLD}
24 + COLOUR_LIST_HEADER=$(tput setaf 2)${COLOUR_BOLD} # green
25 COLOUR_LIST_LEFT=${COLOUR_BOLD}
26 COLOUR_LIST_RIGHT=${COLOUR_NORMAL}
27 }