mirror of
https://github.com/AdaCore/xmlada.git
synced 2026-02-12 12:30:28 -08:00
Contributed by Nicolas Boulenguez (nicolas at debian.org) Remove the old convert.pl that had been used to import the old list of names, and replace with a full-Ada importer instead. Import all names from the Unicode 8 standard. Change-Id: I03bfa4d0ff769abc8a3b2e23149e1b745f3a8f10
25 lines
1.5 KiB
Ada
25 lines
1.5 KiB
Ada
-- This file is built automatically from data found on the
|
|
-- unicode web site (http://www.unicode.org)
|
|
-- in version 8.0.0.
|
|
package Unicode.Names.Combining_Half_Marks is
|
|
pragma Preelaborate;
|
|
pragma Style_Checks (Off);
|
|
|
|
Combining_Ligature_Left_Half : constant Unicode_Char := 16#FE20#;
|
|
Combining_Ligature_Right_Half : constant Unicode_Char := 16#FE21#;
|
|
Combining_Double_Tilde_Left_Half : constant Unicode_Char := 16#FE22#;
|
|
Combining_Double_Tilde_Right_Half : constant Unicode_Char := 16#FE23#;
|
|
Combining_Macron_Left_Half : constant Unicode_Char := 16#FE24#;
|
|
Combining_Macron_Right_Half : constant Unicode_Char := 16#FE25#;
|
|
Combining_Conjoining_Macron : constant Unicode_Char := 16#FE26#;
|
|
Combining_Ligature_Left_Half_Below : constant Unicode_Char := 16#FE27#;
|
|
Combining_Ligature_Right_Half_Below : constant Unicode_Char := 16#FE28#;
|
|
Combining_Tilde_Left_Half_Below : constant Unicode_Char := 16#FE29#;
|
|
Combining_Tilde_Right_Half_Below : constant Unicode_Char := 16#FE2A#;
|
|
Combining_Macron_Left_Half_Below : constant Unicode_Char := 16#FE2B#;
|
|
Combining_Macron_Right_Half_Below : constant Unicode_Char := 16#FE2C#;
|
|
Combining_Conjoining_Macron_Below : constant Unicode_Char := 16#FE2D#;
|
|
Combining_Cyrillic_Titlo_Left_Half : constant Unicode_Char := 16#FE2E#;
|
|
Combining_Cyrillic_Titlo_Right_Half : constant Unicode_Char := 16#FE2F#;
|
|
end Unicode.Names.Combining_Half_Marks;
|