1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
Author: Agustin Martin Domingo <agmartin@debian.org>
Description: Temporarily set hunspell/eu-ES.aff encoding back to ISO-8859-1.
Bug-Debian: http://bugs.debian.org/828763
Upstream sources are inconsistent, .aff file is UTF-8 and declared as such,
but .dic file is encoded as ISO-8859-1.
Minimal change to .aff file to make both consistent. This patch is smaller
than patching .dic file to make it UTF-8, so I go this way.
--- a/hunspell/eu-ES.aff
+++ b/hunspell/eu-ES.aff
@@ -7,9 +7,9 @@
# 2015/11/10
#
-SET UTF-8
+SET ISO-8859-1
-TRY hzsxaertkniouldgjbmpGCqFfDNBUPRAHOvWcEVyMLISQTKwJXñZY.
+TRY hzsxaertkniouldgjbmpGCqFfDNBUPRAHOvWcEVyMLISQTKwJXZY.
REP 36
REP z s
@@ -40,8 +40,8 @@
REP g j
REP ll il
REP il ll
-REP in ñ
-REP ñ in
+REP in
+REP in
REP mb nb
REP mp np
REP nm mm
|