diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-09-05 15:49:50 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-09-05 15:49:50 +0000 |
commit | 5a774f822f970207297d2b939b0bb5155b3ebe55 (patch) | |
tree | 2dee553566f6c54b53834b3a3ab37db852632749 /main.c | |
parent | [w3m-dev 03292] Re: load file at cursor (diff) | |
download | w3m-5a774f822f970207297d2b939b0bb5155b3ebe55.tar.gz w3m-5a774f822f970207297d2b939b0bb5155b3ebe55.zip |
fix indent
Diffstat (limited to '')
-rw-r--r-- | main.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.111 2002/09/05 15:43:21 ukai Exp $ */ +/* $Id: main.c,v 1.112 2002/09/05 15:49:50 ukai Exp $ */ #define MAINPROGRAM #include "fm.h" #include <signal.h> @@ -75,7 +75,8 @@ static void keyPressEventProc(int c); int show_params_p = 0; void show_params(FILE * fp); -static char *getCurWord(Buffer *buf, int *spos, int *epos, const char *badchars); +static char *getCurWord(Buffer *buf, int *spos, int *epos, + const char *badchars); static int display_ok = FALSE; static void dump_source(Buffer *); @@ -4843,7 +4844,7 @@ getCurWord(Buffer *buf, int *spos, int *epos, const char *badchars) if (!is_wordchar(p[e], badchars)) return NULL; b = e; - while (b > 0 && is_wordchar(p[b-1], badchars)) + while (b > 0 && is_wordchar(p[b - 1], badchars)) b--; while (e < l->len && is_wordchar(p[e], badchars)) e++; |