diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-12-07 07:58:07 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-12-07 07:58:07 +0000 |
commit | 55891cb44a62c8170f806901a12490f634d5165e (patch) | |
tree | 4baf4eca38873a1997aaaebd852817461fbba1e9 /linein.c | |
parent | [w3m-dev 02640] (diff) | |
download | w3m-55891cb44a62c8170f806901a12490f634d5165e.tar.gz w3m-55891cb44a62c8170f806901a12490f634d5165e.zip |
run "make indent"
Diffstat (limited to 'linein.c')
-rw-r--r-- | linein.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: linein.c,v 1.14 2001/12/07 07:24:22 ukai Exp $ */ +/* $Id: linein.c,v 1.15 2001/12/07 07:58:07 ukai Exp $ */ #include "fm.h" #include "local.h" #include "myctype.h" @@ -682,7 +682,7 @@ next_compl(int next) else { for (b = CPos - 1; b >= 0; b--) { if ((strBuf->ptr[b] == ' ' || strBuf->ptr[b] == CTRL_I) && - !((b > 0) && strBuf->ptr[b-1] == '\\')) + !((b > 0) && strBuf->ptr[b - 1] == '\\')) break; } b++; @@ -888,7 +888,7 @@ unescape_spaces(Str s) if (s == NULL) return s; for (p = s->ptr; *p; p++) { - if (*p == '\\' && (*(p+1) == ' ' || *(p+1) == CTRL_I)) { + if (*p == '\\' && (*(p + 1) == ' ' || *(p + 1) == CTRL_I)) { if (tmp == NULL) tmp = Strnew_charp_n(s->ptr, (int)(p - s->ptr)); } |