fix indent

This commit is contained in:
Fumitoshi UKAI
2002-11-22 15:57:29 +00:00
parent bd44683efa
commit e3c33e02e6
4 changed files with 12 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: regex.c,v 1.17 2002/11/22 15:56:43 ukai Exp $ */
/* $Id: regex.c,v 1.18 2002/11/22 15:57:29 ukai Exp $ */
/*
* regex: Regular expression pattern match library
*
@@ -659,7 +659,7 @@ matchWhich(longchar * pattern, longchar c, int igncase)
ans = 1;
break;
}
else if (igncase && c < 127 && IS_ALPHA(c) &&
else if (igncase && c < 127 && IS_ALPHA(c) &&
((*p <= c && tolower(c) <= *(p + 2)) ||
(*p <= c && toupper(c) <= *(p + 2)))) {
ans = 1;
@@ -672,7 +672,7 @@ matchWhich(longchar * pattern, longchar c, int igncase)
ans = 1;
break;
}
else if (igncase && c < 127 && IS_ALPHA(c) &&
else if (igncase && c < 127 && IS_ALPHA(c) &&
(*p == tolower(c) || *p == toupper(c))) {
ans = 1;
break;