summaryrefslogtreecommitdiff
path: root/textproc/namazu2/patches/patch-ak
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/namazu2/patches/patch-ak')
-rw-r--r--textproc/namazu2/patches/patch-ak15
1 files changed, 0 insertions, 15 deletions
diff --git a/textproc/namazu2/patches/patch-ak b/textproc/namazu2/patches/patch-ak
deleted file mode 100644
index 486019ef52f..00000000000
--- a/textproc/namazu2/patches/patch-ak
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ak,v 1.1 2004/12/15 13:09:58 taca Exp $
-
---- src/result.c.orig 2004-03-21 00:02:51.000000000 +0900
-+++ src/result.c
-@@ -315,8 +315,8 @@ emphasize(char *str)
- static int
- is_wordboundary(char *p)
- {
-- if (isalpha(*p) && isalpha(*(p + 1))) return 0;
-- if (isdigit(*p) && isdigit(*(p + 1))) return 0;
-+ if (isalpha((unsigned char)*p) && isalpha((unsigned char)*(p + 1))) return 0;
-+ if (isdigit((unsigned char)*p) && isdigit((unsigned char)*(p + 1))) return 0;
- return 1;
- }
-