diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2011-09-03 09:17:17 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2011-09-03 09:17:17 +0000 |
commit | eac840da13497057308fa103338fe3b26bc363c7 (patch) | |
tree | 558300d23f728d09ae01e181b918bd5c1d9e077c /app/cwm/conf.c | |
parent | 1de9d82c9ede2f62b6f36b0dda3fc36fb0bc8d5d (diff) |
"defaultfont" is unclear (and confusing while reading code) when it also
applies to the user supplied font, so rename.
ok oga@
Diffstat (limited to 'app/cwm/conf.c')
-rw-r--r-- | app/cwm/conf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/cwm/conf.c b/app/cwm/conf.c index f5b98ac76..656133e61 100644 --- a/app/cwm/conf.c +++ b/app/cwm/conf.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: conf.c,v 1.91 2011/08/29 09:10:49 okan Exp $ + * $OpenBSD: conf.c,v 1.92 2011/09/03 09:17:16 okan Exp $ */ #include <sys/param.h> @@ -62,7 +62,7 @@ conf_gap(struct conf *c, struct screen_ctx *sc) void conf_font(struct conf *c, struct screen_ctx *sc) { - sc->font = font_make(sc, c->DefaultFontName); + sc->font = font_make(sc, c->font); } void @@ -208,7 +208,7 @@ conf_init(struct conf *c) c->color[CWM_COLOR_BG_MENU].name = xstrdup(CONF_COLOR_MENUBG); - c->DefaultFontName = xstrdup(DEFAULTFONTNAME); + c->font = xstrdup(CONF_FONT); } void @@ -252,7 +252,7 @@ conf_clear(struct conf *c) for (i = 0; i < CWM_COLOR_MAX; i++) xfree(c->color[i].name); - xfree(c->DefaultFontName); + xfree(c->font); } void |