w3m

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

commit 7c485829a11165f3f5a3f3904a2c2d6e2e066779
parent e1b5238ee7a8c0dd69aad204ca731a827adca0a2
Author: ukai <ukai>
Date:   Fri, 22 Mar 2002 15:05:18 +0000

indent fix

Diffstat:
Mfunc.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/func.c b/func.c @@ -229,7 +229,7 @@ getWord(char **str) p = *str; SKIP_BLANKS(p); - for (s = p; *p && ! IS_SPACE(*p) && *p != ';'; p++) ; + for (s = p; *p && !IS_SPACE(*p) && *p != ';'; p++) ; *str = p; return Strnew_charp_n(s, p - s)->ptr; }