From b51f8e6a990c3462464b3830e51b54605e2ade6a Mon Sep 17 00:00:00 2001 From: okan Date: Sat, 3 Sep 2011 09:17:16 +0000 Subject: "defaultfont" is unclear (and confusing while reading code) when it also applies to the user supplied font, so rename. ok oga@ --- parse.y | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'parse.y') diff --git a/parse.y b/parse.y index 1b55f08..1b291ca 100644 --- a/parse.y +++ b/parse.y @@ -105,8 +105,8 @@ yesno : YES { $$ = 1; } ; main : FONTNAME STRING { - free(conf->DefaultFontName); - conf->DefaultFontName = $2; + free(conf->font); + conf->font = $2; } | STICKY yesno { if ($2 == 0) @@ -561,7 +561,7 @@ parse_config(const char *filename, struct conf *xconf) for (i = 0; i < CWM_COLOR_MAX; i++) xconf->color[i].name = conf->color[i].name; - xconf->DefaultFontName = conf->DefaultFontName; + xconf->font = conf->font; } free(conf); -- cgit 1.4.1