aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/decode.c4
-rw-r--r--src/web.cc2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/decode.c b/src/decode.c
index af1d578d..a94156d0 100644
--- a/src/decode.c
+++ b/src/decode.c
@@ -194,7 +194,7 @@ Decode *a_Decode_transfer_init(const char *format)
dc->decode = Decode_chunked;
dc->free = Decode_chunked_free;
dc->buffer = NULL; /* not used */
- MSG("chunked!\n");
+ _MSG("chunked!\n");
}
return dc;
}
@@ -210,7 +210,7 @@ Decode *a_Decode_content_init(const char *format)
Decode *dc = NULL;
if (format && !dStrcasecmp(format, "gzip")) {
- MSG("gzipped data!\n");
+ _MSG("gzipped data!\n");
z_stream *zs;
dc = dNew(Decode, 1);
diff --git a/src/web.cc b/src/web.cc
index bd4cebd4..ad7618c5 100644
--- a/src/web.cc
+++ b/src/web.cc
@@ -75,7 +75,7 @@ int a_Web_dispatch_by_type (const char *Type, DilloWeb *Web,
return -1;
/* Set a style for the widget */
- fontAttrs.name = "Bitstream Charter";
+ fontAttrs.name = prefs.vw_fontname;
fontAttrs.size = (int) rint(12.0 * prefs.font_factor);
fontAttrs.weight = 400;
fontAttrs.style = style::FONT_STYLE_NORMAL;