aboutsummaryrefslogtreecommitdiffstats
path: root/display.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-11-13 15:49:00 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-11-13 15:49:00 +0000
commita632426d3cabfcda69b07118f7da32a21343c351 (patch)
tree6cf2ff688a0fd2642beb629cb5de9ecaf7daa8d4 /display.c
parent[w3m-dev 03424] Content length (diff)
downloadw3m-a632426d3cabfcda69b07118f7da32a21343c351.tar.gz
w3m-a632426d3cabfcda69b07118f7da32a21343c351.zip
[w3m-dev 03425] charset of title
* display.c (displayBuffer): buffername converted to system coding for term title From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r--display.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/display.c b/display.c
index f88cfe8..bd00f15 100644
--- a/display.c
+++ b/display.c
@@ -1,4 +1,4 @@
-/* $Id: display.c,v 1.30 2002/11/12 12:46:53 ukai Exp $ */
+/* $Id: display.c,v 1.31 2002/11/13 15:49:01 ukai Exp $ */
#include <signal.h>
#include "fm.h"
@@ -399,7 +399,7 @@ displayBuffer(Buffer *buf, int mode)
standout();
message(msg->ptr, buf->cursorX + buf->rootX, buf->cursorY + buf->rootY);
standend();
- term_title(buf->buffername);
+ term_title(conv_to_system(buf->buffername));
refresh();
#ifdef USE_IMAGE
if (activeImage && displayImage && buf->img) {