Skip to content

Commit c69f9eb

Browse files
committed
fix length check for keyword detection function
1 parent 942fb89 commit c69f9eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/exp2python/src/classes_misc_python.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ CheckWord( const char * word ) {
6060
high = nwords - 1;
6161

6262
/* word is obviously not in list, if it is longer than any of the words in the list */
63-
if( strlen( word ) > 12 ) {
63+
if( strlen( word ) > 18 ) {
6464
return ( word );
6565
}
6666

0 commit comments

Comments
 (0)