diff options
| author | Andrii Kolomoiets | 2020-06-03 14:14:57 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2020-06-05 11:08:28 +0300 |
| commit | 73749efa131dea3ac39f46d08f1ed98bf04830af (patch) | |
| tree | 2f883a5822b62fea6d3f78a89a17107c36d95092 | |
| parent | 30a7ee505aca3cc285699bae1630a28185519d99 (diff) | |
| download | emacs-73749efa131dea3ac39f46d08f1ed98bf04830af.tar.gz emacs-73749efa131dea3ac39f46d08f1ed98bf04830af.zip | |
Update Ukrainian transliteration
* lisp/language/cyril-util.el (standard-display-cyrillic-translit):
Add missing letter "ґ"; tweak letter "г". (Bug#41683)
| -rw-r--r-- | lisp/language/cyril-util.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/language/cyril-util.el b/lisp/language/cyril-util.el index e7a12675905..a3a6f3fdd94 100644 --- a/lisp/language/cyril-util.el +++ b/lisp/language/cyril-util.el | |||
| @@ -152,6 +152,7 @@ If the argument is nil, we return the display table to its standard state." | |||
| 152 | (aset standard-display-table ?љ [?l ?j]) | 152 | (aset standard-display-table ?љ [?l ?j]) |
| 153 | (aset standard-display-table ?њ [?n ?j]) | 153 | (aset standard-display-table ?њ [?n ?j]) |
| 154 | (aset standard-display-table ?џ [?d ?z]) | 154 | (aset standard-display-table ?џ [?d ?z]) |
| 155 | (aset standard-display-table ?ґ [?g]) | ||
| 155 | 156 | ||
| 156 | (aset standard-display-table ?Є [?Y ?e]) | 157 | (aset standard-display-table ?Є [?Y ?e]) |
| 157 | (aset standard-display-table ?Ї [?Y ?i]) | 158 | (aset standard-display-table ?Ї [?Y ?i]) |
| @@ -166,6 +167,7 @@ If the argument is nil, we return the display table to its standard state." | |||
| 166 | (aset standard-display-table ?Љ [?L ?j]) | 167 | (aset standard-display-table ?Љ [?L ?j]) |
| 167 | (aset standard-display-table ?Њ [?N ?j]) | 168 | (aset standard-display-table ?Њ [?N ?j]) |
| 168 | (aset standard-display-table ?Џ [?D ?j]) | 169 | (aset standard-display-table ?Џ [?D ?j]) |
| 170 | (aset standard-display-table ?Ґ [?G]) | ||
| 169 | 171 | ||
| 170 | (when (equal cyrillic-language "Bulgarian") | 172 | (when (equal cyrillic-language "Bulgarian") |
| 171 | (aset standard-display-table ?щ [?s ?h ?t]) | 173 | (aset standard-display-table ?щ [?s ?h ?t]) |
| @@ -182,7 +184,9 @@ If the argument is nil, we return the display table to its standard state." | |||
| 182 | (aset standard-display-table ?й [?i]) | 184 | (aset standard-display-table ?й [?i]) |
| 183 | (aset standard-display-table ?Й [?Y]) | 185 | (aset standard-display-table ?Й [?Y]) |
| 184 | (aset standard-display-table ?ю [?i ?u]) | 186 | (aset standard-display-table ?ю [?i ?u]) |
| 185 | (aset standard-display-table ?я [?i ?a])))) | 187 | (aset standard-display-table ?я [?i ?a]) |
| 188 | (aset standard-display-table ?г [?h]) | ||
| 189 | (aset standard-display-table ?Г [?H])))) | ||
| 186 | 190 | ||
| 187 | ;; | 191 | ;; |
| 188 | (provide 'cyril-util) | 192 | (provide 'cyril-util) |