diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-09-26 17:59:51 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-09-26 17:59:51 +0000 |
commit | eb5aa3e9152b2078fc3341625b9eeecd6328494a (patch) | |
tree | a19587f2a7efc6f78ce5946016aad9d16ca30d53 /display.c | |
parent | conv.c ucs_eucjp.h ucs_latin1.h: deleted (diff) | |
download | w3m-eb5aa3e9152b2078fc3341625b9eeecd6328494a.tar.gz w3m-eb5aa3e9152b2078fc3341625b9eeecd6328494a.zip |
add comments
Diffstat (limited to 'display.c')
-rw-r--r-- | display.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: display.c,v 1.67 2003/09/24 18:48:59 ukai Exp $ */ +/* $Id: display.c,v 1.68 2003/09/26 17:59:51 ukai Exp $ */ #include <signal.h> #include "fm.h" @@ -334,6 +334,7 @@ make_lastline_message(Buffer *buf) Strcat(msg, Sprintf("%d/%d (%d%%)", cl, ll, r)); } else + /* FIXME: gettextize? */ Strcat_charp(msg, "Viewing"); #ifdef USE_SSL if (buf->ssl_certificate) @@ -475,6 +476,7 @@ displayBuffer(Buffer *buf, int mode) msg = make_lastline_message(buf); if (buf->firstLine == NULL) { + /* FIXME: gettextize? */ Strcat_charp(msg, "\tNo Line"); } if (delayed_msg != NULL) { @@ -1194,6 +1196,7 @@ message_list_panel(void) Str tmp = Strnew_size(LINES * COLS); ListItem *p; + /* FIXME: gettextize? */ Strcat_charp(tmp, "<html><head><title>List of error messages</title></head><body>" "<h1>List of error messages</h1><table cellpadding=0>\n"); |