diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-09-22 21:27:42 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-09-22 21:27:42 +0000 |
commit | b0754b366a9b0351029c768c0699e6168b546b7f (patch) | |
tree | a63c9bc56e5ee4c429effec67a8818c03f1d45e0 /rc.c | |
parent | merge m17n patch (diff) | |
download | w3m-b0754b366a9b0351029c768c0699e6168b546b7f.tar.gz w3m-b0754b366a9b0351029c768c0699e6168b546b7f.zip |
fix build problem
Diffstat (limited to '')
-rw-r--r-- | rc.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,9 +1,10 @@ -/* $Id: rc.c,v 1.87 2003/09/22 21:02:20 ukai Exp $ */ +/* $Id: rc.c,v 1.88 2003/09/22 21:27:42 ukai Exp $ */ /* * Initialization file etc. */ #include "fm.h" #include "myctype.h" +#include "proto.h" #include <stdio.h> #include <errno.h> #include "parsetag.h" @@ -1507,7 +1508,7 @@ to_str(struct param_ptr *p) Buffer * load_option_panel(void) { - Str str; + Str src; struct param_ptr *p; struct sel_c *s; #ifdef USE_M17N @@ -1519,8 +1520,8 @@ load_option_panel(void) if (optionpanel_str == NULL) optionpanel_str = Sprintf(optionpanel_src1, w3m_version, - html_quote(Local_cookie->ptr), CMT_HELPER); -#ifdef LANG == JA + html_quote(localCookie()->ptr), CMT_HELPER); +#if LANG == JA if (!OptionEncode) { optionpanel_str = wc_Str_conv(optionpanel_str, OptionCharset, InnerCharset); |