aboutsummaryrefslogtreecommitdiffstats
path: root/regex.c
diff options
context:
space:
mode:
Diffstat (limited to 'regex.c')
-rw-r--r--regex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/regex.c b/regex.c
index dd1042d..3b04ceb 100644
--- a/regex.c
+++ b/regex.c
@@ -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;