w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

commit 982ddf3a0c7921dca6d04360495df5cad4ef58db
parent 0d617aaf39097c437bf280534b7461791b3d54b1
Author: ukai <ukai>
Date:   Tue, 15 Jan 2002 16:07:58 +0000

* [w3m-dev 02835]
* rc.c: move label_topline, nextpage_topline from param3 to param1
param7 is SSL Setting

Diffstat:
MChangeLog | 6++++++
Mrc.c | 20++++++++++----------
2 files changed, 16 insertions(+), 10 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,9 @@ +2002-01-16 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp> + + * [w3m-dev 02835] + * rc.c: move label_topline, nextpage_topline from param3 to param1 + param7 is SSL Setting + 2002-01-15 Fumitoshi UKAI <ukai@debian.or.jp> * [w3m-dev 02834] mailto: use external program diff --git a/rc.c b/rc.c @@ -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},