diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-01-15 16:07:58 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-01-15 16:07:58 +0000 |
commit | 44e5eaddb2d74675c59c0276086ead2aaddd010e (patch) | |
tree | b7b54c5ca874070af101c038a1772962cade3346 /rc.c | |
parent | run make indent (diff) | |
download | w3m-44e5eaddb2d74675c59c0276086ead2aaddd010e.tar.gz w3m-44e5eaddb2d74675c59c0276086ead2aaddd010e.zip |
* [w3m-dev 02835]
* rc.c: move label_topline, nextpage_topline from param3 to param1
param7 is SSL Setting
Diffstat (limited to 'rc.c')
-rw-r--r-- | rc.c | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -1,4 +1,4 @@ -/* $Id: rc.c,v 1.27 2002/01/15 15:58:02 ukai Exp $ */ +/* $Id: rc.c,v 1.28 2002/01/15 16:07:58 ukai Exp $ */ /* * Initialization file etc. */ @@ -401,6 +401,14 @@ struct param_ptr params1[] = { {"show_lnum", P_INT, PI_ONOFF, (void *)&showLineNum, CMT_SHOW_NUM, NULL}, {"show_srch_str", P_INT, PI_ONOFF, (void *)&show_srch_str, CMT_SHOW_SRCH_STR, NULL}, +#ifdef LABEL_TOPLINE + {"label_topline", P_INT, PI_ONOFF, (void *)&label_topline, + CMT_LABEL_TOPLINE, NULL}, +#endif +#ifdef NEXTPAGE_TOPLINE + {"nextpage_topline", P_INT, PI_ONOFF, (void *)&nextpage_topline, + CMT_NEXTPAGE_TOPLINE, NULL}, +#endif {NULL, 0, 0, NULL, NULL, NULL}, }; @@ -450,14 +458,6 @@ struct param_ptr params3[] = { {"vi_prec_num", P_INT, PI_ONOFF, (void *)&vi_prec_num, CMT_VI_PREC_NUM, NULL}, #endif -#ifdef LABEL_TOPLINE - {"label_topline", P_INT, PI_ONOFF, (void *)&label_topline, - CMT_LABEL_TOPLINE, NULL}, -#endif -#ifdef NEXTPAGE_TOPLINE - {"nextpage_topline", P_INT, PI_ONOFF, (void *)&nextpage_topline, - CMT_NEXTPAGE_TOPLINE, NULL}, -#endif {"wrap_search", P_INT, PI_ONOFF, (void *)&WrapDefault, CMT_WRAP, NULL}, {"ignorecase_search", P_INT, PI_ONOFF, (void *)&IgnoreCase, CMT_IGNORE_CASE, NULL}, @@ -598,7 +598,7 @@ struct param_section sections[] = { {"ネットワークの設定", params9}, {"プロキシの設定", params4}, #ifdef USE_SSL - {"SSL認証設定", params7}, + {"SSLの設定", params7}, #endif #ifdef USE_COOKIE {"クッキーの設定", params8}, @@ -614,7 +614,7 @@ struct param_section sections[] = { {"Network Setting", params9}, {"Proxy Setting", params4}, #ifdef USE_SSL - {"SSL Verification Setting", params7}, + {"SSL Setting", params7}, #endif #ifdef USE_COOKIE {"Cookie Setting", params8}, |