indent fix

This commit is contained in:
Fumitoshi UKAI
2002-03-22 15:05:18 +00:00
parent 8c342edd42
commit 7d9c4711a4

4
func.c
View File

@@ -1,4 +1,4 @@
/* $Id: func.c,v 1.8 2002/03/19 16:06:52 ukai Exp $ */ /* $Id: func.c,v 1.9 2002/03/22 15:05:18 ukai Exp $ */
/* /*
* w3m func.c * w3m func.c
*/ */
@@ -229,7 +229,7 @@ getWord(char **str)
p = *str; p = *str;
SKIP_BLANKS(p); SKIP_BLANKS(p);
for (s = p; *p && ! IS_SPACE(*p) && *p != ';'; p++) ; for (s = p; *p && !IS_SPACE(*p) && *p != ';'; p++) ;
*str = p; *str = p;
return Strnew_charp_n(s, p - s)->ptr; return Strnew_charp_n(s, p - s)->ptr;
} }