blob: 5da1671ed1eec56e3390e3fdb412d75cbd9b5d03 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/sphinxstemen.cpp.orig 2018-02-03 10:36:47 UTC
+++ src/sphinxstemen.cpp
@@ -47,7 +47,7 @@ static unsigned char vowel_map[] =
static inline int stem_en_id ( unsigned char l )
{
- register unsigned char * v = stem_en_doubles;
+ unsigned char * v = stem_en_doubles;
while ( *v && *v!=l ) v++;
return ( *v==l ) ? 1 : 0;
}
|