diff options
author | okan | 2009-05-04 19:13:33 +0000 |
---|---|---|
committer | okan | 2009-05-04 19:13:33 +0000 |
commit | 1673b0950c00f7fb6ae9151c22e92ee943185592 (patch) | |
tree | efdd8db9a8a24b0cf621ff5daf53d85cb24eb34d | |
parent | 73d2cdc5260ddb4cdb269bc345d4482e3677bc65 (diff) | |
download | cwm-1673b0950c00f7fb6ae9151c22e92ee943185592.tar.gz |
no need to use the global here.
ok todd@ oga@
-rw-r--r-- | conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. * - * $Id: conf.c,v 1.57 2009/02/07 21:07:00 martynas Exp $ + * $Id: conf.c,v 1.58 2009/05/04 19:13:33 okan Exp $ */ #include "headers.h" @@ -57,7 +57,7 @@ conf_font(struct conf *c) sc = screen_current(); - c->DefaultFont = font_make(sc, Conf.DefaultFontName); + c->DefaultFont = font_make(sc, c->DefaultFontName); c->FontHeight = font_ascent() + font_descent() + 1; } |