Remove UseColor from front-end
This option wasn't used. Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu> Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
e4b1a97ff2
commit
9a6fd1b021
2 changed files with 0 additions and 4 deletions
|
@ -63,7 +63,6 @@ typedef struct __config_t {
|
||||||
|
|
||||||
/* conf file options */
|
/* conf file options */
|
||||||
unsigned short chomp; /* I Love Candy! */
|
unsigned short chomp; /* I Love Candy! */
|
||||||
unsigned short usecolor; /* enable colorful output */
|
|
||||||
unsigned short showsize; /* show individual package sizes */
|
unsigned short showsize; /* show individual package sizes */
|
||||||
/* When downloading, display the amount downloaded, rate, ETA, and percent
|
/* When downloading, display the amount downloaded, rate, ETA, and percent
|
||||||
* downloaded of the total download list */
|
* downloaded of the total download list */
|
||||||
|
|
|
@ -643,9 +643,6 @@ static int _parseconfig(const char *file, const char *givensection,
|
||||||
} else if(strcmp(key, "ILoveCandy") == 0) {
|
} else if(strcmp(key, "ILoveCandy") == 0) {
|
||||||
config->chomp = 1;
|
config->chomp = 1;
|
||||||
pm_printf(PM_LOG_DEBUG, "config: chomp\n");
|
pm_printf(PM_LOG_DEBUG, "config: chomp\n");
|
||||||
} else if(strcmp(key, "UseColor") == 0) {
|
|
||||||
config->usecolor = 1;
|
|
||||||
pm_printf(PM_LOG_DEBUG, "config: usecolor\n");
|
|
||||||
} else if(strcmp(key, "ShowSize") == 0) {
|
} else if(strcmp(key, "ShowSize") == 0) {
|
||||||
config->showsize = 1;
|
config->showsize = 1;
|
||||||
pm_printf(PM_LOG_DEBUG, "config: showsize\n");
|
pm_printf(PM_LOG_DEBUG, "config: showsize\n");
|
||||||
|
|
Loading…
Add table
Reference in a new issue