w3m

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

commit 85b4e69fa934e7d651f1e2d615b080869be74ca2
parent c1a003b15c66f43602f0c8689cb3e101017bb447
Author: ukai <ukai>
Date:   Thu,  5 Sep 2002 15:49:50 +0000

fix indent

Diffstat:
Mmain.c | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/main.c b/main.c @@ -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++;