summaryrefslogtreecommitdiff
path: root/textproc/aspell/patches/patch-am
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/aspell/patches/patch-am')
-rw-r--r--textproc/aspell/patches/patch-am24
1 files changed, 0 insertions, 24 deletions
diff --git a/textproc/aspell/patches/patch-am b/textproc/aspell/patches/patch-am
deleted file mode 100644
index 269fdf6ca0b..00000000000
--- a/textproc/aspell/patches/patch-am
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-am,v 1.2 2007/01/06 22:07:43 wiz Exp $
-
-To understand recursion, you first have to understand recursion.
-
---- prog/aspell.cpp.orig 2006-12-19 10:51:08.000000000 +0000
-+++ prog/aspell.cpp
-@@ -1882,7 +1882,7 @@ struct SML_Parms {
- typedef SML_WordEntry Value;
- typedef const char * Key;
- static const bool is_multi = false;
-- hash<const char *> hash;
-+ acommon::hash<const char *> hash;
- bool equal(Key x, Key y) {return strcmp(x,y) == 0;}
- Key key(const Value & v) {return v.word;}
- };
-@@ -2033,7 +2033,7 @@ struct CML_Parms {
- typedef CML_Entry Value;
- typedef const char * Key;
- static const bool is_multi = true;
-- hash<const char *> hash;
-+ acommon::hash<const char *> hash;
- bool equal(Key x, Key y) {return strcmp(x,y) == 0;}
- Key key(const Value & v) {return v.word;}
- };