forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork0
Commitf3f4043
committed
Fix ancient encoding error in hungarian.stop.
When we grabbed this file off the Snowball project's website, we mistakenlysupposed that it was in LATIN1 encoding, but evidently it was actually inLATIN2. This resulted in ő (o-double-acute, U+0151, which is code 0xF5 inLATIN2) being misconverted into õ (o-tilde, U+00F5), as complained of inbug #10589 from Zoltán Sörös. We'd have messed up u-double-acute too,but there aren't any of those in the file. Other characters used in thefile have the same codes in LATIN1 and LATIN2, which no doubt helped hidethe problem for so long.The error is not only ours: the Snowball project also was confused aboutwhich encoding is required for Hungarian. But dealing with that willrequire source-code changes that I'm not at all sure we'll wish toback-patch. Fixing the stopword file seems reasonably safe to back-patchhowever.1 parent39129ae commitf3f4043
1 file changed
+7
-7
lines changedLines changed: 7 additions & 7 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
55 | 55 |
| |
56 | 56 |
| |
57 | 57 |
| |
58 |
| - | |
59 |
| - | |
60 |
| - | |
61 |
| - | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
62 | 62 |
| |
63 | 63 |
| |
64 | 64 |
| |
| |||
149 | 149 |
| |
150 | 150 |
| |
151 | 151 |
| |
152 |
| - | |
153 |
| - | |
154 |
| - | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
155 | 155 |
| |
156 | 156 |
| |
157 | 157 |
| |
|
0 commit comments
Comments
(0)