w3m

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

commit 34acb4dd88e658abd9b181b0c5bf87d060bb5eaa
parent e2d287469b95b5f36861a2734c3619086f65a93c
Author: ukai <ukai>
Date:   Fri, 29 Mar 2002 16:32:00 +0000

[w3m-dev 03159] "ttp:" is marked instead of "http:" by MARL_URL
* main.c (chkURLBuffer): check internal URLs first
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>

Diffstat:
MChangeLog | 5+++++
Mmain.c | 6+++---
2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,8 @@ +2002-03-30 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp> + + * [w3m-dev 03159] "ttp:" is marked instead of "http:" by MARL_URL + * main.c (chkURLBuffer): check internal URLs first + 2002-03-28 Fumitoshi UKAI <ukai@debian.or.jp> * terms.c (set_tty): s/term_info/w3m_term_info/g; diff --git a/main.c b/main.c @@ -4362,12 +4362,12 @@ chkURLBuffer(Buffer *buf) NULL }; int i; -#ifdef USE_EXTERNAL_URI_LOADER - chkExternalURIBuffer(buf); -#endif for (i = 0; url_like_pat[i]; i++) { reAnchor(buf, url_like_pat[i]); } +#ifdef USE_EXTERNAL_URI_LOADER + chkExternalURIBuffer(buf); +#endif buf->check_url |= CHK_URL; }