From b411c1109dc4305a231689405e214f2e307c3cde Mon Sep 17 00:00:00 2001 From: Fumitoshi UKAI Date: Wed, 24 Sep 2003 18:48:58 +0000 Subject: fix indent --- regex.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'regex.c') diff --git a/regex.c b/regex.c index 120598a..09166fc 100644 --- a/regex.c +++ b/regex.c @@ -1,4 +1,4 @@ -/* $Id: regex.c,v 1.21 2003/09/22 21:02:21 ukai Exp $ */ +/* $Id: regex.c,v 1.22 2003/09/24 18:49:00 ukai Exp $ */ /* * regex: Regular expression pattern match library * @@ -635,7 +635,7 @@ regmatch1(regexchar * re, longchar * c) if (verbose) printf("RE=%s vs %s -> %d\n", lc2c(re->p.pattern, 1), lc2c(c, 1), ans); -#endif /* REGEX_DEBUG */ +#endif /* REGEX_DEBUG */ return ans; case RE_WHICH: return matchWhich(re->p.pattern, c, re->mode & RE_IGNCASE); @@ -690,7 +690,7 @@ match_longchar(longchar * a, longchar * b, int ignore) if (ignore && IS_ALPHA(b->ch)) return (a->ch == TOLOWER(b->ch) || a->ch == TOUPPER(b->ch)); else - return a->ch == b->ch; + return a->ch == b->ch; } static int -- cgit v1.2.3