aboutsummaryrefslogtreecommitdiffstats
path: root/func.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-03-22 15:05:18 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-03-22 15:05:18 +0000
commit7d9c4711a40e16d11d2d93d40f8b82671c38b3ee (patch)
treee5bd0e18f2ed17314330662d41ce6f7afd09d493 /func.c
parentterms.c (term_title): use ttyf instead of stderr (diff)
downloadw3m-7d9c4711a40e16d11d2d93d40f8b82671c38b3ee.tar.gz
w3m-7d9c4711a40e16d11d2d93d40f8b82671c38b3ee.zip
indent fix
Diffstat (limited to 'func.c')
-rw-r--r--func.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/func.c b/func.c
index 2acaf6c..181e78e 100644
--- a/func.c
+++ b/func.c
@@ -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
*/
@@ -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;
}