Skip to content

Commit 32c0843

Browse files
committed
🐛 Fix apostrophe handling
Due to the lack of the ’ character in WORDCHARS, Hunspell can't properly handle words with apostrophes. $ cat test.txt I've been surprised that it doesn't work as expected! $ hunspell -l -d en_AU test.txt ve doesn $ hunspell -l -d en_CA test.txt ve doesn $ hunspell -l -d en_GB test.txt $ hunspell -l -d en_US test.txt ve doesn $ hunspell -l -d en_ZA test.txt ve doesn
1 parent e727276 commit 32c0843

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

en_AU (Kevin Atkinson)/en_AU.aff

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ONLYINCOMPOUND c
1414
COMPOUNDRULE 2
1515
COMPOUNDRULE n*1t
1616
COMPOUNDRULE n*mp
17-
WORDCHARS 0123456789
17+
WORDCHARS 0123456789
1818

1919
PFX A Y 1
2020
PFX A 0 re .

en_CA (Kevin Atkinson)/en_CA.aff

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ONLYINCOMPOUND c
1414
COMPOUNDRULE 2
1515
COMPOUNDRULE n*1t
1616
COMPOUNDRULE n*mp
17-
WORDCHARS 0123456789
17+
WORDCHARS 0123456789
1818

1919
PFX A Y 1
2020
PFX A 0 re .

en_US (Kevin Atkinson)/en_US.aff

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ONLYINCOMPOUND c
1414
COMPOUNDRULE 2
1515
COMPOUNDRULE n*1t
1616
COMPOUNDRULE n*mp
17-
WORDCHARS 0123456789
17+
WORDCHARS 0123456789
1818

1919
PFX A Y 1
2020
PFX A 0 re .

en_ZA (Dwayne Bailey)/en_ZA.aff

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ TRY esiaénrtolcdugmfphbyvkw-'.zqjxSNRTLCGDMFPHBEAUYOIVKWóöâôZQJXÅçèîê
3636
ICONV 1
3737
ICONV ’ '
3838

39+
WORDCHARS 0123456789’
40+
3941
NOSUGGEST !
4042
REP 36
4143
REP f ph

0 commit comments

Comments
 (0)