emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-27 73749ef: Update Ukrainian transliteration


From: Eli Zaretskii
Subject: emacs-27 73749ef: Update Ukrainian transliteration
Date: Fri, 5 Jun 2020 04:09:05 -0400 (EDT)

branch: emacs-27
commit 73749efa131dea3ac39f46d08f1ed98bf04830af
Author: Andrii Kolomoiets <andreyk.mad@gmail.com>
Commit: Eli Zaretskii <eliz@gnu.org>

    Update Ukrainian transliteration
    
    * lisp/language/cyril-util.el (standard-display-cyrillic-translit):
    Add missing letter "ґ"; tweak letter "г".  (Bug#41683)
---
 lisp/language/cyril-util.el | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/lisp/language/cyril-util.el b/lisp/language/cyril-util.el
index e7a1267..a3a6f3f 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."
     (aset standard-display-table ?љ  [?l ?j])
     (aset standard-display-table ?њ  [?n ?j])
     (aset standard-display-table ?џ  [?d ?z])
+    (aset standard-display-table ?ґ  [?g])
 
     (aset standard-display-table ?Є  [?Y ?e])
     (aset standard-display-table ?Ї  [?Y ?i])
@@ -166,6 +167,7 @@ If the argument is nil, we return the display table to its 
standard state."
     (aset standard-display-table ?Љ  [?L ?j])
     (aset standard-display-table ?Њ  [?N ?j])
     (aset standard-display-table ?Џ  [?D ?j])
+    (aset standard-display-table ?Ґ  [?G])
 
     (when (equal cyrillic-language "Bulgarian")
       (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."
       (aset standard-display-table ?й [?i])
       (aset standard-display-table ?Й [?Y])
       (aset standard-display-table ?ю [?i ?u])
-      (aset standard-display-table ?я [?i ?a]))))
+      (aset standard-display-table ?я [?i ?a])
+      (aset standard-display-table ?г [?h])
+      (aset standard-display-table ?Г [?H]))))
 
 ;;
 (provide 'cyril-util)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]