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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987
|
;;; ethio-util.el --- utilities for Ethiopic
;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
;; Licensed to the Free Software Foundation.
;; Keywords: mule, multilingual, Ethiopic
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;; Author: TAKAHASHI Naoto <ntakahas@etl.go.jp>
;;; Code:
;; Information for exiting Ethiopic environment.
(defvar exit-ethiopic-environment-data nil)
;;;###autoload
(defun setup-ethiopic-environment ()
"Setup multilingual environment for Ethiopic."
(set-language-environment "Ethiopic"))
;;;###autoload
(defun setup-ethiopic-environment-internal ()
(let ((key-bindings '((" " . ethio-insert-space)
([?\S- ] . ethio-insert-ethio-space)
([?\C-'] . ethio-gemination)
([f2] . ethio-toggle-space)
([S-f2] . ethio-replace-space) ; as requested
([f3] . ethio-toggle-punctuation)
([f4] . ethio-sera-to-fidel-buffer)
([S-f4] . ethio-sera-to-fidel-region)
([C-f4] . ethio-sera-to-fidel-mail-or-marker)
([f5] . ethio-fidel-to-sera-buffer)
([S-f5] . ethio-fidel-to-sera-region)
([C-f5] . ethio-fidel-to-sera-mail-or-marker)
([f6] . ethio-modify-vowel)
([f7] . ethio-replace-space)
([f8] . ethio-input-special-character)))
kb)
(while key-bindings
(setq kb (car (car key-bindings)))
(setq exit-ethiopic-environment-data
(cons (cons kb (global-key-binding kb))
exit-ethiopic-environment-data))
(global-set-key kb (cdr (car key-bindings)))
(setq key-bindings (cdr key-bindings))))
(add-hook 'quail-activate-hook 'ethio-select-a-translation)
(add-hook 'find-file-hooks 'ethio-find-file)
(add-hook 'write-file-hooks 'ethio-write-file)
(add-hook 'after-save-hook 'ethio-find-file))
(defun exit-ethiopic-environment ()
"Exit Ethiopic language environment"
(while exit-ethiopic-environment-data
(global-set-key (car (car exit-ethiopic-environment-data))
(cdr (car exit-ethiopic-environment-data)))
(setq exit-ethiopic-environment-data
(cdr exit-ethiopic-environment-data)))
(remove-hook 'quail-activate-hook 'ethio-select-a-translation)
(remove-hook 'find-file-hooks 'ethio-find-file)
(remove-hook 'write-file-hooks 'ethio-write-file)
(remove-hook 'after-save-hook 'ethio-find-file))
;;
;; ETHIOPIC UTILITY FUNCTIONS
;;
;; If the filename ends in ".sera", editing is done in fidel
;; but file I/O is done in SERA.
;;
;; If the filename ends in ".java", editing is done in fidel
;; but file I/O is done in the \uXXXX style, where XXXX is
;; the Unicode codepoint for the Ethiopic character.
;;
;; If the filename ends in ".tex", editing is done in fidel
;; but file I/O is done in EthioTeX format.
;;
;; To automatically convert Ethiopic text to SERA format when sending mail,
;; (add-hook 'mail-send-hook 'ethio-fidel-to-sera-mail)
;;
;; To automatically convert SERA format to Ethiopic when receiving mail,
;; (add-hook 'rmail-show-message-hook 'ethio-sera-to-fidel-mail)
;;
;; To automatically convert Ethiopic text to SERA format when posting news,
;; (add-hook 'news-inews-hook 'ethio-fidel-to-sera-mail)
;;
;; users' preference
;;
(defvar ethio-primary-language 'tigrigna
"*Symbol that defines the primary language in SERA --> FIDEL conversion.
The value should be one of: `tigrigna', `amharic' or `english'.")
(defvar ethio-secondary-language 'english
"*Symbol that defines the secondary language in SERA --> FIDEL conversion.
The value should be one of: `tigrigna', `amharic' or `english'.")
(defvar ethio-use-colon-for-colon nil
"*Non-nil means associate ASCII colon with Ethiopic colon.
If nil, associate ASCII colon with Ethiopic word separator, i.e., two
vertically stacked dots. All SERA <--> FIDEL converters refer this
variable.")
(defvar ethio-use-three-dot-question nil
"*Non-nil means associate ASCII question mark with Ethiopic old style question mark (three vertically stacked dots).
If nil, associate ASCII question mark with Ethiopic stylised question
mark. All SERA <--> FIDEL converters refer this variable.")
(defvar ethio-quote-vowel-always nil
"*Non-nil means always put an apostrophe before an isolated vowel (except at word initial) in FIDEL --> SERA conversion.
If nil, put an apostrophe only between a sixth-form consonant and an
isolated vowel.")
(defvar ethio-W-sixth-always nil
"*Non-nil means convert the Wu-form of a 12-form consonant to \"W'\" instead of \"Wu\" in FIDEL --> SERA conversion.")
(defvar ethio-numeric-reduction 0
"*Degree of reduction in converting Ethiopic digits into Arabic digits.
Should be 0, 1 or 2.
For example, ({10}{9}{100}{80}{7}) is converted into:
`10`9`100`80`7 if `ethio-numeric-reduction' is 0,
`109100807 if `ethio-numeric-reduction' is 1,
`10900807 if `ethio-numeric-reduction' is 2.")
(defvar ethio-implicit-period-conversion t
"*Non-nil means replacing the Ethiopic dot at the end of an Ethiopic sentence
with an Ethiopic full stop.")
(defvar ethio-java-save-lowercase nil
"*Non-nil means save Ethiopic characters in lowercase hex numbers to Java files.
If nil, use uppercases.")
;;
;; SERA to FIDEL
;;
(defconst ethio-sera-to-fidel-table
[
nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
;;; SP
(" "
(?: (if ethio-use-colon-for-colon " $(3$l(B" "$(3$h(B")
(32 (if ethio-use-colon-for-colon " $(3$l(B " "$(3$h(B"))
(?- " $(3$m(B")
(?: " $(3$i(B")
(?| (if ethio-use-colon-for-colon " $(3$l(B|" " $(3$h(B|")
(?: " $(3$o(B"))))
;;; ! " # $ % & '
nil nil nil nil nil nil ("" (?' "$(3%s(B"))
;;; ( ) * + , - .
nil nil nil nil ("$(3$j(B") ("-" (?: "$(3$l(B")) ("$(3%u(B")
;;; / 0 1 2 3 4 5 6 7 8 9
nil nil nil nil nil nil nil nil nil nil nil
;;; :
((if ethio-use-colon-for-colon "$(3$l(B" "$(3$h(B")
(32 (if ethio-use-colon-for-colon "$(3$l(B " "$(3$h(B"))
(?- "$(3$m(B")
(?: "$(3$i(B")
(?| (if ethio-use-colon-for-colon "$(3$l(B|" "$(3$h(B|")
(?: "$(3$o(B")))
;;; ; < = >
("$(3$k(B") ("<" (?< "$(3%v(B")) nil (">" (?> "$(3%w(B"))
;;; ?
((if ethio-use-three-dot-question "$(3$n(B" "$(3%x(B"))
;;; @
nil
;;; A
("$(3"f(B" (?2 "$(3#8(B"))
;;; B
("$(3"((B" (?e "$(3"#(B") (?u "$(3"$(B") (?i "$(3"%(B") (?a "$(3"&(B") (?E "$(3"'(B") (?o "$(3")(B")
(?W "$(3%b(B" (?e "$(3%2(B") (?u "$(3%b(B") (?i "$(3%B(B") (?a "$(3"*(B") (?E "$(3%R(B")))
;;; C
("$(3$4(B" (?e "$(3$/(B") (?u "$(3$0(B") (?i "$(3$1(B") (?a "$(3$2(B") (?E "$(3$3(B") (?o "$(3$5(B")
(?W "$(3$6(B" (?a "$(3$6(B")
(?e "$(3$4%n(B") (?u "$(3$4%r(B") (?i "$(3$4%o(B") (?E "$(3$4%q(B")))
;;; D
("$(3#b(B" (?e "$(3#](B") (?u "$(3#^(B") (?i "$(3#_(B") (?a "$(3#`(B") (?E "$(3#a(B") (?o "$(3#c(B")
(?W "$(3#d(B" (?a "$(3#d(B")
(?e "$(3#b%n(B") (?u "$(3#b%r(B") (?i "$(3#b%o(B") (?E "$(3#b%q(B")))
;;; E
("$(3"g(B" (?2 "$(3#9(B"))
;;; F
("$(3$T(B" (?e "$(3$O(B") (?u "$(3$P(B") (?i "$(3$Q(B") (?a "$(3$R(B") (?E "$(3$S(B") (?o "$(3$U(B")
(?W "$(3%d(B" (?e "$(3%4(B") (?u "$(3%d(B") (?i "$(3%D(B") (?a "$(3$V(B") (?E "$(3%T(B"))
(?Y "$(3$a(B" (?a "$(3$a(B")))
;;; G
("$(3$$(B" (?e "$(3#}(B") (?u "$(3#~(B") (?i "$(3$!(B") (?a "$(3$"(B") (?E "$(3$#(B") (?o "$(3$%(B")
(?W "$(3%c(B" (?e "$(3%3(B") (?u "$(3%c(B") (?i "$(3%C(B") (?a "$(3$&(B") (?E "$(3%S(B")))
;;; H
("$(3!6(B" (?e "$(3!1(B") (?u "$(3!2(B") (?i "$(3!3(B") (?a "$(3!4(B") (?E "$(3!5(B") (?o "$(3!7(B")
(?W "$(3!8(B" (?a "$(3!8(B")
(?e "$(3!6%n(B") (?u "$(3!6%r(B") (?i "$(3!6%o(B") (?E "$(3!6%q(B")))
;;; I
("$(3"h(B" (?2 "$(3#:(B"))
;;; J
("$(3#j(B" (?e "$(3#e(B") (?u "$(3#f(B") (?i "$(3#g(B") (?a "$(3#h(B") (?E "$(3#i(B") (?o "$(3#k(B")
(?W "$(3#l(B" (?a "$(3#l(B")
(?e "$(3#j%n(B") (?u "$(3#j%r(B") (?i "$(3#j%o(B") (?E "$(3#j%q(B")))
;;; K
("$(3#"(B" (?e "$(3"{(B") (?u "$(3"|(B") (?i "$(3"}(B") (?a "$(3"~(B") (?E "$(3#!(B") (?o "$(3##(B")
(?W "$(3#*(B" (?e "$(3#%(B") (?u "$(3#*(B") (?i "$(3#'(B") (?a "$(3#((B") (?E "$(3#)(B")))
;;; L
("$(3!.(B" (?e "$(3!)(B") (?u "$(3!*(B") (?i "$(3!+(B") (?a "$(3!,(B") (?E "$(3!-(B") (?o "$(3!/(B")
(?W "$(3!0(B" (?a "$(3!0(B")
(?e "$(3!.%n(B") (?u "$(3!.%r(B") (?i "$(3!.%o(B") (?E "$(3!.%q(B")))
;;; M
("$(3!>(B" (?e "$(3!9(B") (?u "$(3!:(B") (?i "$(3!;(B") (?a "$(3!<(B") (?E "$(3!=(B") (?o "$(3!?(B")
(?W "$(3%a(B" (?e "$(3%1(B") (?u "$(3%a(B") (?i "$(3%A(B") (?a "$(3!@(B") (?E "$(3%Q(B"))
(?Y "$(3$_(B" (?a "$(3$_(B")))
;;; N
("$(3"`(B" (?e "$(3"[(B") (?u "$(3"\(B") (?i "$(3"](B") (?a "$(3"^(B") (?E "$(3"_(B") (?o "$(3"a(B")
(?W "$(3"b(B" (?a "$(3"b(B")
(?e "$(3"`%n(B") (?u "$(3"`%r(B") (?i "$(3"`%o(B") (?E "$(3"`%q(B")))
;;; O
("$(3"i(B" (?2 "$(3#;(B"))
;;; P
("$(3$<(B" (?e "$(3$7(B") (?u "$(3$8(B") (?i "$(3$9(B") (?a "$(3$:(B") (?E "$(3$;(B") (?o "$(3$=(B")
(?W "$(3$>(B" (?a "$(3$>(B")
(?e "$(3$<%n(B") (?u "$(3$<%r(B") (?i "$(3$<%o(B") (?E "$(3$<%q(B")))
;;; Q
("$(3!v(B" (?e "$(3!q(B") (?u "$(3!r(B") (?i "$(3!s(B") (?a "$(3!t(B") (?E "$(3!u(B") (?o "$(3!w(B")
(?W "$(3!~(B" (?e "$(3!y(B") (?u "$(3!~(B") (?i "$(3!{(B") (?a "$(3!|(B") (?E "$(3!}(B")))
;;; R
("$(3!N(B" (?e "$(3!I(B") (?u "$(3!J(B") (?i "$(3!K(B") (?a "$(3!L(B") (?E "$(3!M(B") (?o "$(3!O(B")
(?W "$(3!P(B" (?a "$(3!P(B")
(?e "$(3!N%n(B") (?u "$(3!N%r(B") (?i "$(3!N%o(B") (?E "$(3!N%q(B"))
(?Y "$(3$`(B" (?a "$(3$`(B")))
;;; S
("$(3$D(B" (?e "$(3$?(B") (?u "$(3$@(B") (?i "$(3$A(B") (?a "$(3$B(B") (?E "$(3$C(B") (?o "$(3$E(B")
(?W "$(3$F(B" (?a "$(3$F(B")
(?e "$(3$D%n(B") (?u "$(3$D%r(B") (?i "$(3$D%o(B") (?E "$(3$D%q(B"))
(?2 "$(3$L(B"
(?e "$(3$G(B") (?u "$(3$H(B") (?i "$(3$I(B") (?a "$(3$J(B") (?E "$(3$K(B") (?o "$(3$M(B")
(?W "$(3$F(B" (?a "$(3$F(B")
(?e "$(3$L%n(B") (?u "$(3$L%r(B") (?i "$(3$L%o(B") (?E "$(3$L%q(B"))))
;;; T
("$(3$,(B" (?e "$(3$'(B") (?u "$(3$((B") (?i "$(3$)(B") (?a "$(3$*(B") (?E "$(3$+(B") (?o "$(3$-(B")
(?W "$(3$.(B" (?a "$(3$.(B")
(?e "$(3$,%n(B") (?u "$(3$,%r(B") (?i "$(3$,%o(B") (?E "$(3$,%q(B")))
;;; U
("$(3"d(B" (?2 "$(3#6(B"))
;;; V
("$(3"0(B" (?e "$(3"+(B") (?u "$(3",(B") (?i "$(3"-(B") (?a "$(3".(B") (?E "$(3"/(B") (?o "$(3"1(B")
(?W "$(3"2(B" (?a "$(3"2(B")
(?e "$(3"0%n(B") (?u "$(3"0%r(B") (?i "$(3"0%o(B") (?E "$(3"0%q(B")))
;;; W
("$(3%r(B" (?e "$(3%n(B") (?u "$(3%r(B") (?i "$(3%o(B") (?a "$(3%p(B") (?E "$(3%q(B"))
;;; X
("$(3%N(B" (?e "$(3%I(B") (?u "$(3%J(B") (?i "$(3%K(B") (?a "$(3%L(B") (?E "$(3%M(B") (?o "$(3%O(B"))
;;; Y
("$(3#R(B" (?e "$(3#M(B") (?u "$(3#N(B") (?i "$(3#O(B") (?a "$(3#P(B") (?E "$(3#Q(B") (?o "$(3#S(B")
(?W "$(3#T(B" (?a "$(3#T(B")
(?e "$(3#R%n(B") (?u "$(3#R%r(B") (?i "$(3#R%o(B") (?E "$(3#R%q(B")))
;;; Z
("$(3#J(B" (?e "$(3#E(B") (?u "$(3#F(B") (?i "$(3#G(B") (?a "$(3#H(B") (?E "$(3#I(B") (?o "$(3#K(B")
(?W "$(3#L(B" (?a "$(3#L(B")
(?e "$(3#J%n(B") (?u "$(3#J%r(B") (?i "$(3#J%o(B") (?E "$(3#J%q(B")))
;;; [ \ ] ^ _
nil nil nil nil nil
;;; `
(""
(?: "$(3$h(B")
(?? (if ethio-use-three-dot-question "$(3%x(B" "$(3$n(B"))
(?! "$(3%t(B")
(?e "$(3#5(B") (?u "$(3#6(B") (?U "$(3#6(B") (?i "$(3#7(B") (?a "$(3#8(B") (?A "$(3#8(B")
(?E "$(3#9(B") (?I "$(3#:(B") (?o "$(3#;(B") (?O "$(3#;(B")
(?g "$(3%^(B"
(?e "$(3%Y(B") (?u "$(3%Z(B") (?i "$(3%[(B") (?a "$(3%\(B") (?E "$(3%](B") (?o "$(3%_(B"))
(?h "$(3"H(B"
(?e "$(3"C(B") (?u "$(3"D(B") (?i "$(3"E(B") (?a "$(3"F(B") (?E "$(3"G(B") (?o "$(3"I(B")
(?W "$(3"P(B" (?e "$(3"K(B") (?u "$(3"P(B") (?i "$(3"M(B") (?a "$(3"N(B") (?E "$(3"O(B")))
(?k "$(3%>(B"
(?e "$(3%9(B") (?u "$(3%:(B") (?i "$(3%;(B") (?a "$(3%<(B") (?E "$(3%=(B") (?o "$(3%?(B"))
(?s "$(3!F(B"
(?e "$(3!A(B") (?u "$(3!B(B") (?i "$(3!C(B") (?a "$(3!D(B") (?E "$(3!E(B") (?o "$(3!G(B")
(?W "$(3!H(B" (?a "$(3!H(B")
(?e "$(3!F%n(B") (?u "$(3!F%r(B") (?i "$(3!F%o(B") (?E "$(3!F%q(B")))
(?S "$(3$L(B"
(?e "$(3$G(B") (?u "$(3$H(B") (?i "$(3$I(B") (?a "$(3$J(B") (?E "$(3$K(B") (?o "$(3$M(B")
(?W "$(3$F(B" (?a "$(3$F(B")
(?e "$(3$L%n(B") (?u "$(3$L%r(B") (?i "$(3$L%o(B") (?E "$(3$L%q(B")))
(?q "$(3%.(B" (?e "$(3%)(B") (?u "$(3%*(B") (?i "$(3%+(B") (?a "$(3%,(B") (?E "$(3%-(B") (?o "$(3%/(B")))
;;; a
("$(3"f(B" (?2 "$(3#8(B"))
;;; b
("$(3"((B" (?e "$(3"#(B") (?u "$(3"$(B") (?i "$(3"%(B") (?a "$(3"&(B") (?E "$(3"'(B") (?o "$(3")(B")
(?W "$(3%b(B" (?e "$(3%2(B") (?u "$(3%b(B") (?i "$(3%B(B") (?a "$(3"*(B") (?E "$(3%R(B")))
;;; c
("$(3"@(B" (?e "$(3";(B") (?u "$(3"<(B") (?i "$(3"=(B") (?a "$(3">(B") (?E "$(3"?(B") (?o "$(3"A(B")
(?W "$(3"B(B" (?a "$(3"B(B")
(?e "$(3"@%n(B") (?u "$(3"@%r(B") (?i "$(3"@%o(B") (?E "$(3"@%q(B")))
;;; d
("$(3#Z(B" (?e "$(3#U(B") (?u "$(3#V(B") (?i "$(3#W(B") (?a "$(3#X(B") (?E "$(3#Y(B") (?o "$(3#[(B")
(?W "$(3#\(B" (?a "$(3#\(B")
(?e "$(3#Z%o(B") (?u "$(3#Z%r(B") (?i "$(3#Z%p(B") (?E "$(3#Z%q(B")))
;;; e
("$(3"c(B" (?2 "$(3#5(B") (?a "$(3"j(B"))
;;; f
("$(3$T(B" (?e "$(3$O(B") (?u "$(3$P(B") (?i "$(3$Q(B") (?a "$(3$R(B") (?E "$(3$S(B") (?o "$(3$U(B")
(?W "$(3%d(B" (?e "$(3%4(B") (?u "$(3%d(B") (?i "$(3%D(B") (?a "$(3$V(B") (?E "$(3%T(B"))
(?Y "$(3$a(B" (?a "$(3$a(B")))
;;; g
("$(3#r(B" (?e "$(3#m(B") (?u "$(3#n(B") (?i "$(3#o(B") (?a "$(3#p(B") (?E "$(3#q(B") (?o "$(3#s(B")
(?W "$(3#z(B" (?e "$(3#u(B") (?u "$(3#z(B") (?i "$(3#w(B") (?a "$(3#x(B") (?E "$(3#y(B"))
(?2 "$(3%^(B" (?e "$(3%Y(B") (?u "$(3%Z(B") (?i "$(3%[(B") (?a "$(3%\(B") (?E "$(3%](B") (?o "$(3%_(B")))
;;; h
("$(3!&(B" (?e "$(3!!(B") (?u "$(3!"(B") (?i "$(3!#(B") (?a "$(3!$(B") (?E "$(3!%(B") (?o "$(3!'(B")
(?W "$(3"P(B" (?e "$(3"K(B") (?u "$(3"P(B") (?i "$(3"M(B") (?a "$(3"N(B") (?E "$(3"O(B"))
(?2 "$(3"H(B" (?e "$(3"C(B") (?u "$(3"D(B") (?i "$(3"E(B") (?a "$(3"F(B") (?E "$(3"G(B") (?o "$(3"I(B")
(?W "$(3"P(B" (?e "$(3"K(B") (?u "$(3"P(B") (?i "$(3"M(B") (?a "$(3"N(B") (?E "$(3"O(B"))))
;;; i
("$(3"e(B" (?2 "$(3#7(B"))
;;; j
("$(3#j(B" (?e "$(3#e(B") (?u "$(3#f(B") (?i "$(3#g(B") (?a "$(3#h(B") (?E "$(3#i(B") (?o "$(3#k(B")
(?W "$(3#l(B" (?a "$(3#l(B")
(?e "$(3#j%n(B") (?u "$(3#j%r(B") (?i "$(3#j%o(B") (?E "$(3#j%q(B")))
;;; k
("$(3"p(B" (?e "$(3"k(B") (?u "$(3"l(B") (?i "$(3"m(B") (?a "$(3"n(B") (?E "$(3"o(B") (?o "$(3"q(B")
(?W "$(3"x(B" (?e "$(3"s(B") (?u "$(3"x(B") (?i "$(3"u(B") (?a "$(3"v(B") (?E "$(3"w(B"))
(?2 "$(3%>(B" (?e "$(3%9(B") (?u "$(3%:(B") (?i "$(3%;(B") (?a "$(3%<(B") (?E "$(3%=(B") (?o "$(3%?(B")))
;;; l
("$(3!.(B" (?e "$(3!)(B") (?u "$(3!*(B") (?i "$(3!+(B") (?a "$(3!,(B") (?E "$(3!-(B") (?o "$(3!/(B")
(?W "$(3!0(B" (?a "$(3!0(B")
(?e "$(3!.%n(B") (?u "$(3!.%r(B") (?i "$(3!.%o(B") (?E "$(3!.%q(B")))
;;; m
("$(3!>(B" (?e "$(3!9(B") (?u "$(3!:(B") (?i "$(3!;(B") (?a "$(3!<(B") (?E "$(3!=(B") (?o "$(3!?(B")
(?W "$(3%a(B" (?e "$(3%1(B") (?u "$(3%a(B") (?i "$(3%A(B") (?a "$(3!@(B") (?E "$(3%Q(B"))
(?Y "$(3$_(B" (?a "$(3$_(B")))
;;; n
("$(3"X(B" (?e "$(3"S(B") (?u "$(3"T(B") (?i "$(3"U(B") (?a "$(3"V(B") (?E "$(3"W(B") (?o "$(3"Y(B")
(?W "$(3"Z(B" (?a "$(3"Z(B")
(?e "$(3"X%n(B") (?u "$(3"X%r(B") (?i "$(3"X%o(B") (?E "$(3"X%q(B")))
;;; o
("$(3"i(B" (?2 "$(3#;(B"))
;;; p
("$(3$\(B" (?e "$(3$W(B") (?u "$(3$X(B") (?i "$(3$Y(B") (?a "$(3$Z(B") (?E "$(3$[(B") (?o "$(3$](B")
(?W "$(3%e(B" (?e "$(3%5(B") (?u "$(3%e(B") (?i "$(3%E(B") (?a "$(3$^(B") (?E "$(3%U(B")))
;;; q
("$(3!f(B" (?e "$(3!a(B") (?u "$(3!b(B") (?i "$(3!c(B") (?a "$(3!d(B") (?E "$(3!e(B") (?o "$(3!g(B")
(?W "$(3!n(B" (?e "$(3!i(B") (?u "$(3!n(B") (?i "$(3!k(B") (?a "$(3!l(B") (?E "$(3!m(B"))
(?2 "$(3%.(B" (?e "$(3%)(B") (?u "$(3%*(B") (?i "$(3%+(B") (?a "$(3%,(B") (?E "$(3%-(B") (?o "$(3%/(B")))
;;; r
("$(3!N(B" (?e "$(3!I(B") (?u "$(3!J(B") (?i "$(3!K(B") (?a "$(3!L(B") (?E "$(3!M(B") (?o "$(3!O(B")
(?W "$(3!P(B" (?a "$(3!P(B")
(?e "$(3!N%n(B") (?u "$(3!N%r(B") (?i "$(3!N%o(B") (?E "$(3!N%q(B"))
(?Y "$(3$`(B" (?a "$(3$`(B")))
;;; s
("$(3!V(B" (?e "$(3!Q(B") (?u "$(3!R(B") (?i "$(3!S(B") (?a "$(3!T(B") (?E "$(3!U(B") (?o "$(3!W(B")
(?W "$(3!X(B" (?a "$(3!X(B")
(?e "$(3!V%n(B") (?u "$(3!V%r(B") (?i "$(3!V%o(B") (?E "$(3!V%q(B"))
(?2 "$(3!F(B" (?e "$(3!A(B") (?u "$(3!B(B") (?i "$(3!C(B") (?a "$(3!D(B") (?E "$(3!E(B") (?o "$(3!G(B")
(?W "$(3!H(B" (?a "$(3!H(B")
(?e "$(3!F%n(B") (?u "$(3!F%r(B") (?i "$(3!F%o(B") (?E "$(3!F%q(B"))))
;;; t
("$(3"8(B" (?e "$(3"3(B") (?u "$(3"4(B") (?i "$(3"5(B") (?a "$(3"6(B") (?E "$(3"7(B") (?o "$(3"9(B")
(?W "$(3":(B" (?a "$(3":(B")
(?e "$(3"8%n(B") (?u "$(3"8%r(B") (?i "$(3"8%o(B") (?E "$(3"8%q(B")))
;;; u
("$(3"d(B" (?2 "$(3#6(B"))
;;; v
("$(3"0(B" (?e "$(3"+(B") (?u "$(3",(B") (?i "$(3"-(B") (?a "$(3".(B") (?E "$(3"/(B") (?o "$(3"1(B")
(?W "$(3"2(B" (?a "$(3"2(B")
(?e "$(3"0%n(B") (?u "$(3"0%r(B") (?i "$(3"0%o(B") (?E "$(3"0%q(B")))
;;; w
("$(3#2(B" (?e "$(3#-(B") (?u "$(3#.(B") (?i "$(3#/(B") (?a "$(3#0(B") (?E "$(3#1(B") (?o "$(3#3(B")
(?W "$(3%p(B" (?e "$(3%n(B") (?u "$(3%r(B") (?i "$(3%o(B") (?a "$(3%p(B") (?E "$(3%q(B")))
;;; x
("$(3!^(B" (?e "$(3!Y(B") (?u "$(3!Z(B") (?i "$(3 (?o "$(3!_(B")
(?W "$(3!`(B" (?a "$(3!`(B")
(?e "$(3!^%n(B") (?u "$(3!^%r(B") (?i "$(3!^%o(B") (?E "$(3!^%q(B")))
;;; y
("$(3#R(B" (?e "$(3#M(B") (?u "$(3#N(B") (?i "$(3#O(B") (?a "$(3#P(B") (?E "$(3#Q(B") (?o "$(3#S(B")
(?W "$(3#T(B" (?a "$(3#T(B")
(?e "$(3#R%n(B") (?u "$(3#R%r(B") (?i "$(3#R%o(B") (?E "$(3#R%q(B")))
;;; z
("$(3#B(B" (?e "$(3#=(B") (?u "$(3#>(B") (?i "$(3#?(B") (?a "$(3#@(B") (?E "$(3#A(B") (?o "$(3#C(B")
(?W "$(3#D(B" (?a "$(3#D(B")
(?e "$(3#B%n(B") (?u "$(3#B%r(B") (?i "$(3#B%o(B") (?E "$(3#B%q(B")))
;;; { | } ~ DEL
nil nil nil nil nil
])
;;;###autoload
(defun ethio-sera-to-fidel-region (beg end &optional secondary force)
"Convert the characters in region from SERA to FIDEL.
The variable `ethio-primary-language' specifies the primary language
and `ethio-secondary-language' specifies the secondary.
If the 3rd parameter SECONDARY is given and non-nil, assume the region
begins begins with the secondary language; otherwise with the primary
language.
If the 4th parameter FORCE is given and non-nil, perform conversion
even if the buffer is read-only.
See also the descriptions of the variables
`ethio-use-colon-for-colon' and
`ethio-use-three-dot-question'."
(interactive "r\nP")
(save-restriction
(narrow-to-region beg end)
(ethio-sera-to-fidel-buffer secondary force)))
;;;###autoload
(defun ethio-sera-to-fidel-buffer (&optional secondary force)
"Convert the current buffer from SERA to FIDEL.
The variable `ethio-primary-language' specifies the primary
language and `ethio-secondary-language' specifies the secondary.
If the 1st optional parameter SECONDARY is non-nil, assume the buffer
begins with the secondary language; otherwise with the primary
language.
If the 2nd optional parametr FORCE is non-nil, perform conversion even if the
buffer is read-only.
See also the descriptions of the variables
`ethio-use-colon-for-colon' and
`ethio-use-three-dot-question'."
(interactive "P")
(if (and buffer-read-only
(not force)
(not (y-or-n-p "Buffer is read-only. Force to convert? ")))
(error ""))
(let ((ethio-primary-language ethio-primary-language)
(ethio-secondary-language ethio-secondary-language)
(ethio-use-colon-for-colon ethio-use-colon-for-colon)
(ethio-use-three-dot-question ethio-use-three-dot-question)
;; The above four variables may be changed temporary
;; by tilde escapes during conversion. So we bind them to other
;; variables but of the same names.
(buffer-read-only nil)
(case-fold-search nil)
current-language
next-language)
(setq current-language
(if secondary
ethio-secondary-language
ethio-primary-language))
(goto-char (point-min))
(while (not (eobp))
(setq next-language
(cond
((eq current-language 'english)
(ethio-sera-to-fidel-english))
((eq current-language 'amharic)
(ethio-sera-to-fidel-ethio 'amharic))
((eq current-language 'tigrigna)
(ethio-sera-to-fidel-ethio 'tigrigna))
(t ; we don't know what to do
(ethio-sera-to-fidel-english))))
(setq current-language
(cond
;; when language tag is explicitly specified
((not (eq next-language 'toggle))
next-language)
;; found a toggle in a primary language section
((eq current-language ethio-primary-language)
ethio-secondary-language)
;; found a toggle in a secondary, third, fourth, ...
;; language section
(t
ethio-primary-language))))
;; If ethio-implicit-period-conversion is non-nil, the
;; Ethiopic dot "$(3%u(B" at the end of an Ethiopic sentence is
;; replaced with the Ethiopic full stop "$(3$i(B".
(if ethio-implicit-period-conversion
(progn
(goto-char (point-min))
(while (re-search-forward "\\([$(3!!(B-$(3$a%)(B-$(3%e%n(B-$(3%r%s(B]\\)$(3%u(B\\([ \t]\\)"
nil t)
(replace-match "\\1$(3$i(B\\2"))
(goto-char (point-min))
(while (re-search-forward "\\([$(3!!(B-$(3$a%)(B-$(3%e%n(B-$(3%r%s(B]\\)$(3%u(B$" nil t)
(replace-match "\\1$(3$i(B"))))
;; gemination
(goto-char (point-min))
(while (re-search-forward "\\ce$(3%s(B" nil 0)
(compose-region
(save-excursion (backward-char 2) (point))
(point)))
))
(defun ethio-sera-to-fidel-english nil
"Handle English section in SERA to FIDEL conversion.
Conversion stops when a language switch is found. Then delete that
switch and return the name of the new language as a symbol."
(let ((new-language nil))
(while (and (not (eobp)) (null new-language))
(cond
;; if no more "\", nothing to do.
((not (search-forward "\\" nil 0)))
;; hereafter point is put after a "\".
;; first delete that "\", then check the following chars
;; "\\" : leave the second "\"
((progn
(delete-backward-char 1)
(= (following-char) ?\\ ))
(forward-char 1))
;; "\ " : delete the following " "
((= (following-char) 32)
(delete-char 1)
(setq new-language 'toggle))
;; a language flag
((setq new-language (ethio-process-language-flag)))
;; just a "\" : not special sequence.
(t
(setq new-language 'toggle))))
new-language))
(defun ethio-sera-to-fidel-ethio (lang)
"Handle Ethiopic section in SERA to FIDEL conversion.
Conversion stops when a language switch is found. Then delete that
switch and return the name of the new language as a symbol.
The parameter LANG (symbol, either `amharic' or `tigrigna') affects
the conversion of \"a\"."
(let ((new-language nil)
(verbatim nil)
start table table2 ch)
(setcar (aref ethio-sera-to-fidel-table ?a)
(if (eq lang 'tigrigna) "$(3"f(B" "$(3"c(B"))
(while (and (not (eobp)) (null new-language))
(setq ch (following-char))
(cond
;; skip from "<" to ">" (or from "&" to ";") if in w3-mode
((and (boundp 'sera-being-called-by-w3)
sera-being-called-by-w3
(or (= ch ?<) (= ch ?&)))
(search-forward (if (= ch ?<) ">" ";")
nil 0))
;; leave non-ASCII characters as they are
((>= ch 128)
(forward-char 1))
;; ethiopic digits
((looking-at "`[1-9][0-9]*")
(delete-char 1)
(ethio-convert-digit))
;; if not seeing a "\", do sera to fidel conversion
((/= ch ?\\ )
(setq start (point))
(forward-char 1)
(setq table (aref ethio-sera-to-fidel-table ch))
(while (setq table2 (cdr (assoc (following-char) table)))
(setq table table2)
(forward-char 1))
(if (setq ch (car table))
(progn
(delete-region start (point))
(if (stringp ch)
(insert ch)
(insert (eval ch))))))
;; if control reaches here, we must be looking at a "\"
;; verbatim mode
(verbatim
(if (looking-at "\\\\~! ?")
;; "\~!" or "\~! ". switch to non-verbatim mode
(progn
(replace-match "")
(setq verbatim nil))
;; "\" but not "\~!" nor "\~! ". skip the current "\".
(forward-char 1)))
;; hereafter, non-verbatim mode and looking at a "\"
;; first delete that "\", then check the following chars.
;; "\ " : delete the following " "
((progn
(delete-char 1)
(setq ch (following-char))
(= ch 32))
(delete-char 1)
(setq new-language 'toggle))
;; "\~!" or "\~! " : switch to verbatim mode
((looking-at "~! ?")
(replace-match "")
(setq verbatim t))
;; a language flag
((setq new-language (ethio-process-language-flag)))
;; "\~" but not "\~!" nor a language flag
((= ch ?~)
(delete-char 1)
(ethio-tilde-escape))
;; ASCII punctuation escape. skip
((looking-at "\\(,\\|\\.\\|;\\|:\\|'\\|`\\|\?\\|\\\\\\)+")
(goto-char (match-end 0)))
;; "\", but not special sequence
(t
(setq new-language 'toggle))))
new-language))
(defun ethio-process-language-flag nil
"Process a language flag of the form \"~lang\" or \"~lang1~lang2\".
If looking at \"~lang1~lang2\", set `ethio-primary-language' and
`ethio-une-secondary-language' based on \"lang1\" and \"lang2\".
Then delete the language flag \"~lang1~lang2\" from the buffer.
Return value is the new primary language.
If looking at \"~lang\", delete that language flag \"~lang\" from the
buffer and return that language. In this case
`ethio-primary-language' and `ethio-uni-secondary-language'
are left unchanged.
If an unsupported language flag is found, just return nil without
changing anything."
(let (lang1 lang2)
(cond
;; ~lang1~lang2
((and (looking-at
"~\\([a-z][a-z][a-z]?\\)~\\([a-z][a-z][a-z]?\\)[ \t\n\\]")
(setq lang1
(ethio-flag-to-language
(buffer-substring (match-beginning 1) (match-end 1))))
(setq lang2
(ethio-flag-to-language
(buffer-substring (match-beginning 2) (match-end 2)))))
(setq ethio-primary-language lang1
ethio-secondary-language lang2)
(delete-region (point) (match-end 2))
(if (= (following-char) 32)
(delete-char 1))
ethio-primary-language)
;; ~lang
((and (looking-at "~\\([a-z][a-z][a-z]?\\)[ \t\n\\]")
(setq lang1
(ethio-flag-to-language
(buffer-substring (match-beginning 1) (match-end 1)))))
(delete-region (point) (match-end 1))
(if (= (following-char) 32)
(delete-char 1))
lang1)
;; otherwise
(t
nil))))
(defun ethio-tilde-escape nil
"Handle a SERA tilde escape in Ethiopic section and delete it.
Delete the escape even it is not recognised."
(let ((p (point)) command)
(skip-chars-forward "^ \t\n\\\\")
(setq command (buffer-substring p (point)))
(delete-region p (point))
(if (= (following-char) 32)
(delete-char 1))
(cond
;; \~-:
((string= command "-:")
(setq ethio-use-colon-for-colon t))
;; \~`:
((string= command "`:")
(setq ethio-use-colon-for-colon nil))
;; \~?
((string= command "?")
(setq ethio-use-three-dot-question nil))
;; \~`|
((string= command "`|")
(setq ethio-use-three-dot-question t))
;; \~e
((string= command "e")
(insert "$(3%j(B"))
;; \~E
((string= command "E")
(insert "$(3%k(B"))
;; \~a
((string= command "a")
(insert "$(3%l(B"))
;; \~A
((string= command "A")
(insert "$(3%m(B"))
;; \~X
((string= command "X")
(insert "$(3%i(B"))
;; unsupported tilde escape
(t
nil))))
(defun ethio-flag-to-language (flag)
(cond
((or (string= flag "en") (string= flag "eng")) 'english)
((or (string= flag "ti") (string= flag "tir")) 'tigrigna)
((or (string= flag "am") (string= flag "amh")) 'amharic)
(t nil)))
(defun ethio-convert-digit nil
"Convert Arabic digits to Ethiopic digits."
(let (ch z)
(while (and (>= (setq ch (following-char)) ?1)
(<= ch ?9))
(delete-char 1)
;; count up following zeros
(setq z 0)
(while (= (following-char) ?0)
(delete-char 1)
(setq z (1+ z)))
(cond
;; first digit is 10, 20, ..., or 90
((= (mod z 2) 1)
(insert (aref [?$(3$y(B ?$(3$z(B ?$(3${(B ?$(3$|(B ?$(3$}(B ?$(3$~(B ?$(3%!(B ?$(3%"(B ?$(3%#(B] (- ch ?1)))
(setq z (1- z)))
;; first digit is 2, 3, ..., or 9
((/= ch ?1)
(insert (aref [?$(3$q(B ?$(3$r(B ?$(3$s(B ?$(3$t(B ?$(3$u(B ?$(3$v(B ?$(3$w(B ?$(3$x(B] (- ch ?2))))
;; single 1
((= z 0)
(insert "$(3$p(B")))
;; 100
(if (= (mod z 4) 2)
(insert "$(3%$(B"))
;; 10000
(insert-char ?$(3%%(B (/ z 4)))))
;;;###autoload
(defun ethio-sera-to-fidel-mail-or-marker (&optional arg)
"Execute ethio-sera-to-fidel-mail or ethio-sera-to-fidel-marker depending on the current major mode.
If in rmail-mode or in mail-mode, execute the former; otherwise latter."
(interactive "P")
(if (or (eq major-mode 'rmail-mode)
(eq major-mode 'mail-mode))
(ethio-sera-to-fidel-mail (prefix-numeric-value arg))
(ethio-sera-to-fidel-marker arg)))
;;;###autoload
(defun ethio-sera-to-fidel-mail (&optional arg)
"Convert SERA to FIDEL to read/write mail and news.
If the buffer contains the markers \"<sera>\" and \"</sera>\",
convert the segments between them into FIDEL.
If invoked interactively and there is no marker, convert the subject field
and the body into FIDEL using `ethio-sera-to-fidel-region'."
(interactive "p")
(let ((buffer-read-only nil)
border)
(save-excursion
;; follow RFC822 rules instead of looking for a fixed separator
(rfc822-goto-eoh)
(forward-line 1)
(setq border (point))
;; note that the point is placed at the border
(if (or (re-search-forward "^<sera>$" nil t)
(progn
(goto-char (point-min))
(re-search-forward "^Subject: <sera>" border t)))
;; there are markers
(progn
;; we start with the body so that the border will not change
;; use "^<sera>\n" instead of "^<sera>$" not to leave a blank line
(goto-char border)
(while (re-search-forward "^<sera>\n" nil t)
(replace-match "")
(ethio-sera-to-fidel-region
(point)
(progn
(if (re-search-forward "^</sera>\n" nil 0)
(replace-match ""))
(point))))
;; now process the subject
(goto-char (point-min))
(if (re-search-forward "^Subject: <sera>" border t)
(ethio-sera-to-fidel-region
(progn (delete-backward-char 6) (point))
(progn
(if (re-search-forward "</sera>$" (line-end-position) 0)
(replace-match ""))
(point)))))
;; in case there are no marks but invoked interactively
(if arg
(progn
(ethio-sera-to-fidel-region border (point-max))
(goto-char (point-min))
(if (re-search-forward "^Subject: " border t)
(ethio-sera-to-fidel-region (point) (line-end-position))))))
;; adjust the rmail marker
(if (eq major-mode 'rmail-mode)
(set-marker
(aref rmail-message-vector (1+ rmail-current-message))
(point-max))))))
;;;###autoload
(defun ethio-sera-to-fidel-marker (&optional force)
"Convert the regions surrounded by \"<sera>\" and \"</sera>\" from SERA to FIDEL.
Assume that each region begins with `ethio-primary-language'.
The markers \"<sera>\" and \"</sera>\" themselves are not deleted."
(interactive "P")
(if (and buffer-read-only
(not force)
(not (y-or-n-p "Buffer is read-only. Force to convert? ")))
(error ""))
(save-excursion
(goto-char (point-min))
(while (re-search-forward "<sera>" nil t)
(ethio-sera-to-fidel-region
(point)
(if (re-search-forward "</sera>" nil t)
(match-beginning 0)
(point-max))
nil
'force))))
;;
;; FIDEL to SERA
;;
(defconst ethio-fidel-to-sera-map
[ "he" "hu" "hi" "ha" "hE" "h" "ho" "" ;; 0 - 7
"le" "lu" "li" "la" "lE" "l" "lo" "lWa" ;; 8
"He" "Hu" "Hi" "Ha" "HE" "H" "Ho" "HWa" ;; 16
"me" "mu" "mi" "ma" "mE" "m" "mo" "mWa" ;; 24
"`se" "`su" "`si" "`sa" "`sE" "`s" "`so" "`sWa" ;; 32
"re" "ru" "ri" "ra" "rE" "r" "ro" "rWa" ;; 40
"se" "su" "si" "sa" "sE" "s" "so" "sWa" ;; 48
"xe" "xu" "xi" "xa" "xE" "x" "xo" "xWa" ;; 56
"qe" "qu" "qi" "qa" "qE" "q" "qo" "" ;; 64
"qWe" "" "qWi" "qWa" "qWE" "qW'" "" "" ;; 72
"Qe" "Qu" "Qi" "Qa" "QE" "Q" "Qo" "" ;; 80
"QWe" "" "QWi" "QWa" "QWE" "QW'" "" "" ;; 88
"be" "bu" "bi" "ba" "bE" "b" "bo" "bWa" ;; 96
"ve" "vu" "vi" "va" "vE" "v" "vo" "vWa" ;; 104
"te" "tu" "ti" "ta" "tE" "t" "to" "tWa" ;; 112
"ce" "cu" "ci" "ca" "cE" "c" "co" "cWa" ;; 120
"`he" "`hu" "`hi" "`ha" "`hE" "`h" "`ho" "" ;; 128
"hWe" "" "hWi" "hWa" "hWE" "hW'" "" "" ;; 136
"ne" "nu" "ni" "na" "nE" "n" "no" "nWa" ;; 144
"Ne" "Nu" "Ni" "Na" "NE" "N" "No" "NWa" ;; 152
"e" "u" "i" "A" "E" "I" "o" "ea" ;; 160
"ke" "ku" "ki" "ka" "kE" "k" "ko" "" ;; 168
"kWe" "" "kWi" "kWa" "kWE" "kW'" "" "" ;; 176
"Ke" "Ku" "Ki" "Ka" "KE" "K" "Ko" "" ;; 184
"KWe" "" "KWi" "KWa" "KWE" "KW'" "" "" ;; 192
"we" "wu" "wi" "wa" "wE" "w" "wo" "" ;; 200
"`e" "`u" "`i" "`a" "`E" "`I" "`o" "" ;; 208
"ze" "zu" "zi" "za" "zE" "z" "zo" "zWa" ;; 216
"Ze" "Zu" "Zi" "Za" "ZE" "Z" "Zo" "ZWa" ;; 224
"ye" "yu" "yi" "ya" "yE" "y" "yo" "yWa" ;; 232
"de" "du" "di" "da" "dE" "d" "do" "dWa" ;; 240
"De" "Du" "Di" "Da" "DE" "D" "Do" "DWa" ;; 248
"je" "ju" "ji" "ja" "jE" "j" "jo" "jWa" ;; 256
"ge" "gu" "gi" "ga" "gE" "g" "go" "" ;; 264
"gWe" "" "gWi" "gWa" "gWE" "gW'" "" "" ;; 272
"Ge" "Gu" "Gi" "Ga" "GE" "G" "Go" "GWa" ;; 280
"Te" "Tu" "Ti" "Ta" "TE" "T" "To" "TWa" ;; 288
"Ce" "Cu" "Ci" "Ca" "CE" "C" "Co" "CWa" ;; 296
"Pe" "Pu" "Pi" "Pa" "PE" "P" "Po" "PWa" ;; 304
"Se" "Su" "Si" "Sa" "SE" "S" "So" "SWa" ;; 312
"`Se" "`Su" "`Si" "`Sa" "`SE" "`S" "`So" "" ;; 320
"fe" "fu" "fi" "fa" "fE" "f" "fo" "fWa" ;; 328
"pe" "pu" "pi" "pa" "pE" "p" "po" "pWa" ;; 336
"mYa" "rYa" "fYa" "" "" "" "" "" ;; 344
" " " : " "::" "," ";" "-:" ":-" "`?" ;; 352
":|:" "1" "2" "3" "4" "5" "6" "7" ;; 360
"8" "9" "10" "20" "30" "40" "50" "60" ;; 368
"70" "80" "90" "100" "10000" "" "" "" ;; 376
"`qe" "`qu" "`qi" "`qa" "`qE" "`q" "`qo" "" ;; 384
"mWe" "bWe" "GWe" "fWe" "pWe" "" "" "" ;; 392
"`ke" "`ku" "`ki" "`ka" "`kE" "`k" "`ko" "" ;; 400
"mWi" "bWi" "GWi" "fWi" "pWi" "" "" "" ;; 408
"Xe" "Xu" "Xi" "Xa" "XE" "X" "Xo" "" ;; 416
"mWE" "bWE" "GWE" "fWE" "pWE" "" "" "" ;; 424
"`ge" "`gu" "`gi" "`ga" "`gE" "`g" "`go" "" ;; 432
"mW'" "bW'" "GW'" "fW'" "pW'" "" "" "" ;; 440
"\\~X " "\\~e " "\\~E " "\\~a " "\\~A " "wWe" "wWi" "wWa" ;; 448
"wWE" "wW'" "''" "`!" "." "<<" ">>" "?" ]) ;; 456
(defun ethio-prefer-amharic-p nil
(or (eq ethio-primary-language 'amharic)
(and (not (eq ethio-primary-language 'tigrigna))
(eq ethio-secondary-language 'amharic))))
(defun ethio-language-to-flag (lang)
(cond
((eq lang 'english) "eng")
((eq lang 'tigrigna) "tir")
((eq lang 'amharic) "amh")
(t "")))
;;;###autoload
(defun ethio-fidel-to-sera-region (begin end &optional secondary force)
"Replace all the FIDEL characters in the region to the SERA format.
The variable `ethio-primary-language' specifies the primary
language and `ethio-secondary-language' specifies the secondary.
If the 3dr parameter SECONDARY is given and non-nil, try to convert
the region so that it begins in the secondary language; otherwise with
the primary language.
If the 4th parameter FORCE is given and non-nil, convert even if the
buffer is read-only.
See also the descriptions of the variables
`ethio-use-colon-for-colon', `ethio-use-three-dot-question',
`ethio-quote-vowel-always' and `ethio-numeric-reduction'."
(interactive "r\nP")
(save-restriction
(narrow-to-region begin end)
(ethio-fidel-to-sera-buffer secondary force)))
;;;###autoload
(defun ethio-fidel-to-sera-buffer (&optional secondary force)
"Replace all the FIDEL characters in the current buffer to the SERA format.
The variable `ethio-primary-language' specifies the primary
language and `ethio-secondary-language' specifies the secondary.
If the 1st optional parameter SECONDARY is non-nil, try to convert the
region so that it begins in the secondary language; otherwise with the
primary language.
If the 2nd optional parameter FORCE is non-nil, convert even if the
buffer is read-only.
See also the descriptions of the variables
`ethio-use-colon-for-colon', `ethio-use-three-dot-question',
`ethio-quote-vowel-always' and `ethio-numeric-reduction'."
(interactive "P")
(if (and buffer-read-only
(not force)
(not (y-or-n-p "Buffer is read-only. Force to convert? ")))
(error ""))
(let ((buffer-read-only nil)
(case-fold-search nil)
(lonec nil) ;; t means previous char was a lone consonant
(fidel nil) ;; t means previous char was a FIDEL
(digit nil) ;; t means previous char was an Ethiopic digit
(flag (if (ethio-prefer-amharic-p) "\\~amh " "\\~tir "))
mode ch)
;; user's preference in transcription
(if ethio-use-colon-for-colon
(progn
(aset ethio-fidel-to-sera-map 353 "`:")
(aset ethio-fidel-to-sera-map 357 ":"))
(aset ethio-fidel-to-sera-map 353 " : ")
(aset ethio-fidel-to-sera-map 357 "-:"))
(if ethio-use-three-dot-question
(progn
(aset ethio-fidel-to-sera-map 359 "?")
(aset ethio-fidel-to-sera-map 463 "`?"))
(aset ethio-fidel-to-sera-map 359 "`?")
(aset ethio-fidel-to-sera-map 463 "?"))
(mapcar
'(lambda (x)
(aset (aref ethio-fidel-to-sera-map x)
2
(if ethio-W-sixth-always ?' ?u)))
'(77 93 141 181 197 277 440 441 442 443 444 457))
(if (ethio-prefer-amharic-p)
(aset ethio-fidel-to-sera-map 160 "a")
(aset ethio-fidel-to-sera-map 160 "e"))
;; end of user's preference
;; first, decompose geminated characters
(decompose-region (point-min) (point-max))
;; main conversion routine
(goto-char (point-min))
(while (not (eobp))
(setq ch (following-char))
(cond ; ethiopic, english, neutral
;; ethiopic character. must go to ethiopic mode, if not in it.
((eq (char-charset ch) 'ethiopic)
(setq ch (ethio-char-to-ethiocode ch))
(delete-char 1)
(if (not (eq mode 'ethiopic))
(progn
(insert flag)
(setq mode 'ethiopic)))
(cond ; fidel, punc, digit
;; fidels
((or (<= ch 346) ; he - fYa
(and (>= ch 384) (<= ch 444)) ; `qe - pw
(and (>= ch 453) (<= ch 457))) ; wWe - wW
(if (and (memq ch '(160 161 162 163 164 166 167)) ; (e - ea)
(or lonec
(and ethio-quote-vowel-always
fidel)))
(insert "'"))
(insert (aref ethio-fidel-to-sera-map ch))
(setq lonec (ethio-lone-consonant-p ch)
fidel t
digit nil))
;; punctuations or icons
((or (and (>= ch 353) (<= ch 360)) ; : - :|:
(>= ch 458) ; '' - ?
(and (>= ch 448) (<= ch 452))) ; \~X \~e \~E \~a \~A
(insert (aref ethio-fidel-to-sera-map ch))
(setq lonec nil
fidel nil
digit nil))
;; now CH must be an ethiopic digit
;; reduction = 0 or not preceded by Ethiopic number(s)
((or (= ethio-numeric-reduction 0)
(not digit))
(insert "`" (aref ethio-fidel-to-sera-map ch))
(setq lonec nil
fidel nil
digit t))
;; reduction = 2 and following 10s, 100s, 10000s
((and (= ethio-numeric-reduction 2)
(memq ch '(370 379 380)))
(insert (substring (aref ethio-fidel-to-sera-map ch) 1))
(setq lonec nil
fidel nil
digit t))
;; ordinary following digits
(t
(insert (aref ethio-fidel-to-sera-map ch))
(setq lonec nil
fidel nil
digit t))))
;; english character. must go to english mode, if not in it.
((or (and (>= ch ?a) (<= ch ?z))
(and (>= ch ?A) (<= ch ?Z)))
(if (not (eq mode 'english))
(insert "\\~eng "))
(forward-char 1)
(setq mode 'english
lonec nil
fidel nil
digit nil))
;; ch can appear both in ethiopic section and in english section.
(t
;; we must decide the mode, if not decided yet
(if (null mode)
(progn
(setq mode
(if secondary
ethio-secondary-language
ethio-primary-language))
(if (eq mode 'english)
(insert "\\~eng ")
(insert flag)
(setq mode 'ethiopic)))) ; tigrigna & amharic --> ethiopic
(cond ; \ , eng-mode , punc , w3 , other
;; backslash is always quoted
((= ch ?\\ )
(insert "\\")
(forward-char 1))
;; nothing to do if in english mode
((eq mode 'english)
(forward-char 1))
;; now we must be in ethiopic mode and seeing a non-"\"
;; ascii punctuations in ethiopic mode
((looking-at "[,.;:'`?]+")
(insert "\\")
(goto-char (1+ (match-end 0)))) ; because we inserted one byte (\)
;; skip from "<" to ">" (or from "&" to ";") if called from w3
((and (boundp 'sera-being-called-by-w3)
sera-being-called-by-w3
(or (= ch ?<) (= ch ?&)))
(search-forward (if (= ch ?<) ">" ";")
nil 0))
;; neutral character. no need to quote. just skip it.
(t
(forward-char 1)))
(setq lonec nil
fidel nil
digit nil)))
;; end of main conversion routine
)))
(defun ethio-lone-consonant-p (ethiocode)
"If ETHIOCODE is an Ethiopic lone consonant, return t."
(or (and (< ethiocode 344) (= (% ethiocode 8) 5))
;; `q `k X `g mW bW GW fW pW wW
(memq ethiocode '(389 405 421 437 440 441 442 443 444 457))))
;;;###autoload
(defun ethio-fidel-to-sera-mail-or-marker (&optional arg)
"Execute ethio-fidel-to-sera-mail or ethio-fidel-to-sera-marker depending on the current major mode.
If in rmail-mode or in mail-mode, execute the former; otherwise latter."
(interactive "P")
(if (or (eq major-mode 'rmail-mode)
(eq major-mode 'mail-mode))
(ethio-fidel-to-sera-mail)
(ethio-fidel-to-sera-marker arg)))
;;;###autoload
(defun ethio-fidel-to-sera-mail nil
"Convert FIDEL to SERA to read/write mail and news.
If the body contains at least one Ethiopic character,
1) insert the string \"<sera>\" at the beginning of the body,
2) insert \"</sera>\" at the end of the body, and
3) convert the body into SERA.
The very same procedure applies to the subject field, too."
(interactive)
(let ((buffer-read-only nil)
border)
(save-excursion
;; follow RFC822 rules instead of looking for a fixed separator
(rfc822-goto-eoh)
(forward-line 1)
(setq border (point))
;; process body first not to change the border
;; note that the point is already at the border
(if (re-search-forward "\\ce" nil t)
(progn
(ethio-fidel-to-sera-region border (point-max))
(goto-char border)
(insert "<sera>")
(goto-char (point-max))
(insert "</sera>")))
;; process subject
(goto-char (point-min))
(if (re-search-forward "^Subject: " border t)
(let ((beg (point))
(end (line-end-position)))
(if (re-search-forward "\\ce" end t)
(progn
(ethio-fidel-to-sera-region beg end)
(goto-char beg)
(insert "<sera>")
(end-of-line)
(insert "</sera>")))))
;; adjust the rmail marker
(if (eq major-mode 'rmail-mode)
(set-marker
(aref rmail-message-vector (1+ rmail-current-message))
(point-max))))))
;;;###autoload
(defun ethio-fidel-to-sera-marker (&optional force)
"Convert the regions surrounded by \"<sera>\" and \"</sera>\" from FIDEL to SERA.
The markers \"<sera>\" and \"</sera>\" themselves are not deleted."
(interactive "P")
(if (and buffer-read-only
(not force)
(not (y-or-n-p "Buffer is read-only. Force to convert? ")))
(error ""))
(save-excursion
(goto-char (point-min))
(while (re-search-forward "<sera>" nil t)
(ethio-fidel-to-sera-region
(point)
(if (re-search-forward "</sera>" nil t)
(match-beginning 0)
(point-max))
nil
'force))))
;;
;; vowel modification
;;
;;;###autoload
(defun ethio-modify-vowel nil
"Modify the vowel of the FIDEL that is under the cursor."
(interactive)
(let ((ch (following-char))
(composite nil) ; geminated or not
newch base vowel modulo)
(cond
;; in case of gemination
((eq (char-charset ch) 'composition)
(setq ch (string-to-char (decompose-composite-char ch))
composite t))
;; neither gemination nor fidel
((not (eq (char-charset ch) 'ethiopic))
(error "Not a valid character.")))
;; set frequently referred character features
(setq ch (ethio-char-to-ethiocode ch)
base (* (/ ch 8) 8)
modulo (% ch 8))
(if (or (and (>= ch 344) (<= ch 380)) ;; mYa - `10000
(and (>= ch 448) (<= ch 452)) ;; \~X - \~A
(>= ch 458)) ;; private punctuations
(error "Not a valid character."))
(setq
newch
(cond
;; first standalone vowels
((= base 160)
(if (ethio-prefer-amharic-p)
(message "Modify vowel to: [auiAEIoW\"] ")
(message "Modify vowel to: [euiAEIoW\"] "))
(setq vowel (read-char))
(cond
((= vowel ?e) 160)
((= vowel ?u) 161)
((= vowel ?i) 162)
((= vowel ?A) 163)
((= vowel ?E) 164)
((= vowel ?I) 165)
((= vowel ?o) 166)
((= vowel ?W) 167)
((= vowel ?a) (if (ethio-prefer-amharic-p) 160 163))
((= vowel ?\") (setq composite t) ch)
(t nil)))
;; second standalone vowels
((= base 208)
(message "Modify vowel to: [euiaEIo\"] ")
(setq vowel (read-char))
(cond
((= vowel ?e) 208)
((= vowel ?u) 209)
((= vowel ?i) 210)
((= vowel ?a) 211)
((= vowel ?E) 212)
((= vowel ?I) 213)
((= vowel ?o) 214)
((= vowel ?\") (setq composite t) ch)
(t nil)))
;; 12-form consonants, *W* form
((memq base '(72 88 136 176 192 272)) ; qW QW hW kW KW gW
(message "Modify vowel to: [euiaE'\"] ")
(setq vowel (read-char))
(cond
((= vowel ?e) base)
((= vowel ?u) (+ base 5))
((= vowel ?i) (+ base 2))
((= vowel ?a) (+ base 3))
((= vowel ?E) (+ base 4))
((= vowel ?') (+ base 5))
((= vowel ?\") (setq composite t) ch)
(t nil)))
;; extended 12-form consonants, mWa bWa GWa fWa pWa
((= ch 31) ; mWa
(message "Modify vowel to: [euiaE'\"] ")
(setq vowel (read-char))
(cond
((= vowel ?e) 392)
((= vowel ?u) 440)
((= vowel ?i) 408)
((= vowel ?a) ch)
((= vowel ?E) 424)
((= vowel ?') 440)
((= vowel ?\") (setq composite t) ch)
(t nil)))
((= ch 103) ; bWa
(message "Modify vowel to: [euiaE'\"] ")
(setq vowel (read-char))
(cond
((= vowel ?e) 393)
((= vowel ?u) 441)
((= vowel ?i) 409)
((= vowel ?a) ch)
((= vowel ?E) 425)
((= vowel ?') 441)
((= vowel ?\") (setq composite t) ch)
(t nil)))
((= ch 287) ; GWa
(message "Modify vowel to: [euiaE'\"] ")
(setq vowel (read-char))
(cond
((= vowel ?e) 394)
((= vowel ?u) 442)
((= vowel ?i) 410)
((= vowel ?a) ch)
((= vowel ?E) 426)
((= vowel ?') 442)
((= vowel ?\") (setq composite t) ch)
(t nil)))
((= ch 335) ; fWa
(message "Modify vowel to: [euiaE'\"] ")
(setq vowel (read-char))
(cond
((= vowel ?e) 395)
((= vowel ?u) 443)
((= vowel ?i) 411)
((= vowel ?a) ch)
((= vowel ?E) 427)
((= vowel ?') 443)
((= vowel ?\") (setq composite t) ch)
(t nil)))
((= ch 343) ; pWa
(message "Modify vowel to: [euiaE'\"] ")
(setq vowel (read-char))
(cond
((= vowel ?e) 396)
((= vowel ?u) 444)
((= vowel ?i) 412)
((= vowel ?a) ch)
((= vowel ?E) 428)
((= vowel ?') 444)
((= vowel ?\") (setq composite t) ch)
(t nil)))
;; extended 12-form consonatns, mW* bW* GW* fW* pW*
((memq base '(392 408 424 440)) ; *We *Wi *WE *W
(message "Modify vowel to: [eiEau'\"] ")
(setq vowel (read-char))
(cond
((= vowel ?e) (+ 392 modulo))
((= vowel ?i) (+ 408 modulo))
((= vowel ?E) (+ 424 modulo))
((= vowel ?a) (cond
((= modulo 0) 31) ; mWa
((= modulo 1) 103) ; bWa
((= modulo 2) 287) ; GWa
((= modulo 3) 335) ; fWa
((= modulo 4) 343) ; pWa
(t nil))) ; never reach here
((= vowel ?') (+ 440 modulo))
((= vowel ?u) (+ 440 modulo))
((= vowel ?\") (setq composite t) ch)
(t nil)))
((and (>= ch 453) (<= ch 457)) ; wWe wWi wWa wWE wW
(message "Modify vowel to: [eiaE'u\"] ")
(setq vowel (read-char))
(cond
((= vowel ?e) 453)
((= vowel ?i) 454)
((= vowel ?a) 455)
((= vowel ?E) 456)
((= vowel ?') 457)
((= vowel ?u) 457)
((= vowel ?\") (setq composite t) ch)
(t nil)))
;; 7-form consonants, or
;; first 7 of 8-form consonants
((<= modulo 6)
(message "Modify vowel to: [euiaE'o\"] ")
(setq vowel (read-char))
(cond
((= vowel ?e) base)
((= vowel ?u) (+ base 1))
((= vowel ?i) (+ base 2))
((= vowel ?a) (+ base 3))
((= vowel ?E) (+ base 4))
((= vowel ?') (+ base 5))
((= vowel ?o) (+ base 6))
((= vowel ?\") (setq composite t) ch)
(t nil)))
;; otherwise
(t
nil)))
(cond
;; could not get new character
((null newch)
(error "Invalid vowel"))
;; vowel changed on a composite Fidel
(composite
(delete-char 1)
(insert
(compose-string
(concat (char-to-string (ethio-ethiocode-to-char newch)) "$(3%s(B"))))
;; simple vowel modification
(t
(delete-char 1)
(insert (ethio-ethiocode-to-char newch))))))
(defun ethio-ethiocode-to-char (ethiocode)
(make-char
'ethiopic
(+ (/ ethiocode 94) 33)
(+ (mod ethiocode 94) 33)))
(defun ethio-char-to-ethiocode (ch)
(and (eq (char-charset ch) 'ethiopic)
(let ((char-components (split-char ch)))
(+ (* (- (nth 1 char-components) 33) 94)
(- (nth 2 char-components) 33)))))
;;
;; space replacement
;;
;;;###autoload
(defun ethio-replace-space (ch begin end)
"Replace ASCII spaces with Ethiopic word separators in the region.
In the specified region, replace word separators surrounded by two
Ethiopic characters, depending on the first parameter CH, which should
be 1, 2, or 3.
If CH = 1, word separator will be replaced with an ASCII space.
If CH = 2, with two ASCII spaces.
If CH = 3, with the Ethiopic colon-like word separator.
The second and third parameters BEGIN and END specify the region."
(interactive "*cReplace spaces to: 1 (sg col), 2 (dbl col), 3 (Ethiopic)\nr")
(if (not (memq ch '(?1 ?2 ?3)))
(error ""))
(save-excursion
(save-restriction
(narrow-to-region begin end)
(cond
((= ch ?1)
;; an Ethiopic word separator --> an ASCII space
(goto-char (point-min))
(while (search-forward "$(3$h(B" nil t)
(replace-match " " nil t))
;; two ASCII spaces between Ethiopic characters --> an ASCII space
(goto-char (point-min))
(while (re-search-forward "\\(\\ce\\) \\(\\ce\\)" nil t)
(replace-match "\\1 \\2")
(goto-char (match-beginning 2))))
((= ch ?2)
;; An Ethiopic word separator --> two ASCII spaces
(goto-char (point-min))
(while (search-forward "$(3$h(B" nil t)
(replace-match " "))
;; An ASCII space between Ethiopic characters --> two ASCII spaces
(goto-char (point-min))
(while (re-search-forward "\\(\\ce\\) \\(\\ce\\)" nil t)
(replace-match "\\1 \\2")
(goto-char (match-beginning 2))))
(t
;; One or two ASCII spaces between Ethiopic characters
;; --> An Ethiopic word separator
(goto-char (point-min))
(while (re-search-forward "\\(\\ce\\) ?\\(\\ce\\)" nil t)
(replace-match "\\1$(3$h(B\\2")
(goto-char (match-beginning 2)))
;; Three or more ASCII spaces between Ethiopic characters
;; --> An Ethiopic word separator + (N - 2) ASCII spaces
(goto-char (point-min))
(while (re-search-forward "\\(\\ce\\) \\( *\\ce\\)" nil t)
(replace-match "\\1$(3$h(B\\2")
(goto-char (match-beginning 2))))))))
;;
;; special icons
;;
;;;###autoload
(defun ethio-input-special-character (arg)
"Allow the user to input special characters."
(interactive "*cInput number: 1.$(3%j(B 2.$(3%k(B 3.$(3%l(B 4.$(3%m(B 5.$(3%i(B")
(cond
((= arg ?1)
(insert "$(3%j(B"))
((= arg ?2)
(insert "$(3%k(B"))
((= arg ?3)
(insert "$(3%l(B"))
((= arg ?4)
(insert "$(3%m(B"))
((= arg ?5)
(insert "$(3%i(B"))
(t
(error ""))))
;;
;; TeX support
;;
(defconst ethio-fidel-to-tex-map
[ "heG" "huG" "hiG" "haG" "hEG" "hG" "hoG" "" ;; 0 - 7
"leG" "luG" "liG" "laG" "lEG" "lG" "loG" "lWaG" ;; 8
"HeG" "HuG" "HiG" "HaG" "HEG" "HG" "HoG" "HWaG" ;; 16
"meG" "muG" "miG" "maG" "mEG" "mG" "moG" "mWaG" ;; 24
"sseG" "ssuG" "ssiG" "ssaG" "ssEG" "ssG" "ssoG" "ssWaG" ;; 32
"reG" "ruG" "riG" "raG" "rEG" "rG" "roG" "rWaG" ;; 40
"seG" "suG" "siG" "saG" "sEG" "sG" "soG" "sWaG" ;; 48
"xeG" "xuG" "xiG" "xaG" "xEG" "xG" "xoG" "xWaG" ;; 56
"qeG" "quG" "qiG" "qaG" "qEG" "qG" "qoG" "" ;; 64
"qWeG" "" "qWiG" "qWaG" "qWEG" "qWG" "" "" ;; 72
"QeG" "QuG" "QiG" "QaG" "QEG" "QG" "QoG" "" ;; 80
"QWeG" "" "QWiG" "QWaG" "QWEG" "QWG" "" "" ;; 88
"beG" "buG" "biG" "baG" "bEG" "bG" "boG" "bWaG" ;; 96
"veG" "vuG" "viG" "vaG" "vEG" "vG" "voG" "vWaG" ;; 104
"teG" "tuG" "tiG" "taG" "tEG" "tG" "toG" "tWaG" ;; 112
"ceG" "cuG" "ciG" "caG" "cEG" "cG" "coG" "cWaG" ;; 120
"hheG" "hhuG" "hhiG" "hhaG" "hhEG" "hhG" "hhoG" "" ;; 128
"hWeG" "" "hWiG" "hWaG" "hWEG" "hWG" "" "" ;; 136
"neG" "nuG" "niG" "naG" "nEG" "nG" "noG" "nWaG" ;; 144
"NeG" "NuG" "NiG" "NaG" "NEG" "NG" "NoG" "NWaG" ;; 152
"eG" "uG" "iG" "AG" "EG" "IG" "oG" "eaG" ;; 160
"keG" "kuG" "kiG" "kaG" "kEG" "kG" "koG" "" ;; 168
"kWeG" "" "kWiG" "kWaG" "kWEG" "kWG" "" "" ;; 176
"KeG" "KuG" "KiG" "KaG" "KEG" "KG" "KoG" "" ;; 184
"KWeG" "" "KWiG" "KWaG" "KWEG" "KWG" "" "" ;; 192
"weG" "wuG" "wiG" "waG" "wEG" "wG" "woG" "" ;; 200
"eeG" "uuG" "iiG" "aaG" "EEG" "IIG" "ooG" "" ;; 208
"zeG" "zuG" "ziG" "zaG" "zEG" "zG" "zoG" "zWaG" ;; 216
"ZeG" "ZuG" "ZiG" "ZaG" "ZEG" "ZG" "ZoG" "ZWaG" ;; 224
"yeG" "yuG" "yiG" "yaG" "yEG" "yG" "yoG" "yWaG" ;; 232
"deG" "duG" "diG" "daG" "dEG" "dG" "doG" "dWaG" ;; 240
"DeG" "DuG" "DiG" "DaG" "DEG" "DG" "DoG" "DWaG" ;; 248
"jeG" "juG" "jiG" "jaG" "jEG" "jG" "joG" "jWaG" ;; 256
"geG" "guG" "giG" "gaG" "gEG" "gG" "goG" "" ;; 264
"gWeG" "" "gWiG" "gWaG" "gWEG" "gWG" "" "" ;; 272
"GeG" "GuG" "GiG" "GaG" "GEG" "GG" "GoG" "GWaG" ;; 280
"TeG" "TuG" "TiG" "TaG" "TEG" "TG" "ToG" "TWaG" ;; 288
"CeG" "CuG" "CiG" "CaG" "CEG" "CG" "CoG" "CWaG" ;; 296
"PeG" "PuG" "PiG" "PaG" "PEG" "PG" "PoG" "PWaG" ;; 304
"SeG" "SuG" "SiG" "SaG" "SEG" "SG" "SoG" "SWaG" ;; 312
"SSeG" "SSuG" "SSiG" "SSaG" "SSEG" "SSG" "SSoG" "" ;; 320
"feG" "fuG" "fiG" "faG" "fEG" "fG" "foG" "fWaG" ;; 328
"peG" "puG" "piG" "paG" "pEG" "pG" "poG" "pWaG" ;; 336
"mYaG" "rYaG" "fYaG" "" "" "" "" "" ;; 344
"" "spaceG" "periodG" "commaG" ;; 352
"semicolonG" "colonG" "precolonG" "oldqmarkG" ;; 356
"pbreakG" "andG" "huletG" "sostG" "aratG" "amstG" "sadstG" "sabatG" ;; 360
"smntG" "zeteNG" "asrG" "heyaG" "selasaG" "arbaG" "hemsaG" "slsaG" ;; 368
"sebaG" "semanyaG" "zeTanaG" "metoG" "asrxiG" "" "" "" ;; 376
"qqeG" "qquG" "qqiG" "qqaG" "qqEG" "qqG" "qqoG" "" ;; 384
"mWeG" "bWeG" "GWeG" "fWeG" "pWeG" "" "" "" ;; 392
"kkeG" "kkuG" "kkiG" "kkaG" "kkEG" "kkG" "kkoG" "" ;; 400
"mWiG" "bWiG" "GWiG" "fWiG" "pWiG" "" "" "" ;; 408
"XeG" "XuG" "GXiG" "XaG" "XEG" "XG" "XoG" "" ;; 416
"mWEG" "bWEG" "GWEG" "fWEG" "pWEG" "" "" "" ;; 424
"ggeG" "gguG" "ggiG" "ggaG" "ggEG" "ggG" "ggoG" "" ;; 432
"mWG" "bWG" "GWG" "fWG" "pWG" "" "" "" ;; 440
"ornamentG" "flandG" "iflandG" "africaG" ;; 448
"iafricaG" "wWeG" "wWiG" "wWaG" ;; 452
"wWEG" "wWG" "" "slaqG" "dotG" "lquoteG" "rquoteG" "qmarkG" ]) ;; 456
;;
;; To make tex-to-fidel mapping.
;; The following code makes
;; (get 'ethio-tex-command-he 'ethio-fidel-char) ==> ?$(3!!(B
;; etc.
;;
(let ((i 0) str)
(while (< i (length ethio-fidel-to-tex-map))
(setq str (aref ethio-fidel-to-tex-map i))
(if (not (string= str ""))
(put
(intern (concat "ethio-tex-command-" (aref ethio-fidel-to-tex-map i)))
'ethio-fidel-char
(ethio-ethiocode-to-char i)))
(setq i (1+ i))))
;;;###autoload
(defun ethio-fidel-to-tex-buffer nil
"Convert each fidel characters in the current buffer into a fidel-tex command.
Each command is always surrounded by braces."
(interactive)
(let ((buffer-read-only nil))
;; Isolated gemination marks need special treatement
(goto-char (point-min))
(while (search-forward "$(3%s(B" nil t)
(replace-match "\\geminateG{}" t t))
;; First, decompose geminations
;; Here we assume that each composed character consists of
;; one Ethiopic character and the Ethiopic gemination mark.
(decompose-region (point-min) (point-max))
;; Special treatment for geminated characters
;; The geminated character (la'') will be "\geminateG{\la}".
(goto-char (point-min))
(while (search-forward "$(3%s(B" nil t)
(delete-backward-char 1)
(backward-char 1)
(insert "\\geminateG")
(forward-char 1))
;; Ethiopic characters to TeX macros
(goto-char (point-min))
(while (re-search-forward "\\ce" nil t)
(insert
"{\\"
(aref ethio-fidel-to-tex-map
(prog1 (ethio-char-to-ethiocode (preceding-char))
(backward-delete-char 1)))
"}"))
(goto-char (point-min))
(set-buffer-modified-p nil)))
;;;###autoload
(defun ethio-tex-to-fidel-buffer nil
"Convert fidel-tex commands in the current buffer into fidel chars."
(interactive)
(let ((buffer-read-only nil)
(p) (ch))
;; Special treatment for gemination
;; "\geminateG{\la}" or "\geminateG{{\la}}" will be "\la$(3%s(B"
;; "\geminateG{}" remains unchanged.
(goto-char (point-min))
(while (re-search-forward "\\\\geminateG{\\(\\\\[a-zA-Z]+\\)}" nil t)
(replace-match "\\1$(3%s(B"))
;; TeX macros to Ethiopic characters
(goto-char (point-min))
(while (search-forward "\\" nil t)
(setq p (point))
(skip-chars-forward "a-zA-Z")
(setq ch
(get (intern (concat "ethio-tex-command-"
(buffer-substring p (point))))
'ethio-fidel-char))
(if ch
(progn
(delete-region (1- p) (point)) ; don't forget the preceding "\"
(if (and (= (preceding-char) ?{)
(= (following-char) ?}))
(progn
(backward-delete-char 1)
(delete-char 1)))
(insert ch))))
;; compose geminated characters
(goto-char (point-min))
(while (re-search-forward "\\ce$(3%s(B" nil 0)
(compose-region
(save-excursion (backward-char 2) (point))
(point)))
;; Now it's time to convert isolated gemination marks.
(goto-char (point-min))
(while (search-forward "\\geminateG{}" nil t)
(replace-match "$(3%s(B"))
(goto-char (point-min))
(set-buffer-modified-p nil)))
;;
;; Java support
;;
;;;###autoload
(defun ethio-fidel-to-java-buffer nil
"Convert Ethiopic characters into the Java escape sequences.
Each escape sequence is of the form \uXXXX, where XXXX is the
character's codepoint (in hex) in Unicode.
If `ethio-java-save-lowercase' is non-nil, use [0-9a-f].
Otherwise, [0-9A-F]."
(let ((ucode))
;; first, decompose geminations
(decompose-region (point-min) (point-max))
(goto-char (point-min))
(while (re-search-forward "\\ce" nil t)
(setq ucode (+ ?\x1200 (ethio-char-to-ethiocode (preceding-char))))
(if (> ucode ?\x13bc)
(setq ucode (+ ucode 59952)))
(delete-backward-char 1)
(if ethio-java-save-lowercase
(insert (format "\\u%4x" ucode))
(insert (upcase (format "\\u%4x" ucode)))))))
;;;###autoload
(defun ethio-java-to-fidel-buffer nil
"Convert the Java escape sequences into corresponding Ethiopic characters."
(let ((ucode))
(goto-char (point-min))
(while (re-search-forward "\\\\u\\([0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]\\)" nil t)
(setq ucode
(read
(concat
"?\\x"
(buffer-substring (match-beginning 1) (match-end 1)))))
(cond
((and (>= ucode ?\x1200) (<= ucode ?\x13bc))
(replace-match "")
(insert (ethio-ethiocode-to-char (- ucode ?\x1200))))
((and (>= ucode ?\xfdf1) (<= ucode ?\xfdff))
(replace-match "")
(insert (ethio-ethiocode-to-char (- ucode 64560))))
(t
nil)))
;; gemination
(goto-char (point-min))
(while (re-search-forward "\\ce$(3%s(B" nil 0)
(compose-region
(save-excursion (backward-char 2) (point))
(point)))
))
;;
;; file I/O hooks
;;
;;;###autoload
(defun ethio-find-file nil
"Transcribe file content into Ethiopic dependig on filename suffix."
(cond
((string-match "\\.sera$" (buffer-file-name))
(save-excursion
(ethio-sera-to-fidel-buffer nil 'force)
(set-buffer-modified-p nil)))
((string-match "\\.html$" (buffer-file-name))
(let ((sera-being-called-by-w3 t))
(save-excursion
(ethio-sera-to-fidel-marker 'force)
(goto-char (point-min))
(while (re-search-forward "&[lr]aquote;" nil t)
(if (= (char-after (1+ (match-beginning 0))) ?l)
(replace-match "$(3%v(B")
(replace-match "$(3%w(B")))
(set-buffer-modified-p nil))))
((string-match "\\.tex$" (buffer-file-name))
(save-excursion
(ethio-tex-to-fidel-buffer)
(set-buffer-modified-p nil)))
((string-match "\\.java$" (buffer-file-name))
(save-excursion
(ethio-java-to-fidel-buffer)
(set-buffer-modified-p nil)))
(t
nil)))
;;;###autoload
(defun ethio-write-file nil
"Transcribe Ethiopic characters in ASCII depending on the file extension."
(cond
((string-match "\\.sera$" (buffer-file-name))
(save-excursion
(ethio-fidel-to-sera-buffer nil 'force)
(goto-char (point-min))
(ethio-record-user-preference)
(set-buffer-modified-p nil)))
((string-match "\\.html$" (buffer-file-name))
(save-excursion
(let ((sera-being-called-by-w3 t)
(lq (aref ethio-fidel-to-sera-map 461))
(rq (aref ethio-fidel-to-sera-map 462)))
(aset ethio-fidel-to-sera-map 461 "«te;")
(aset ethio-fidel-to-sera-map 462 "»te;")
(ethio-fidel-to-sera-marker 'force)
(goto-char (point-min))
(if (search-forward "<sera>" nil t)
(ethio-record-user-preference))
(aset ethio-fidel-to-sera-map 461 lq)
(aset ethio-fidel-to-sera-map 462 rq)
(set-buffer-modified-p nil))))
((string-match "\\.tex$" (buffer-file-name))
(save-excursion
(ethio-fidel-to-tex-buffer)
(set-buffer-modified-p nil)))
((string-match "\\.java$" (buffer-file-name))
(save-excursion
(ethio-fidel-to-java-buffer)
(set-buffer-modified-p nil)))
(t
nil)))
(defun ethio-record-user-preference nil
(if (looking-at "\\\\~\\(tir?\\|amh?\\) ")
(goto-char (match-end 0))
(insert (if (ethio-prefer-amharic-p) "\\~amh " "\\~tir ")))
(insert (if ethio-use-colon-for-colon "\\~-: " "\\~`: ")
(if ethio-use-three-dot-question "\\~`| " "\\~`? ")))
;;
;; Ethiopic word separator vs. ASCII space
;;
(defvar ethio-prefer-ascii-space t)
(make-variable-buffer-local 'ethio-prefer-ascii-space)
(defun ethio-toggle-space nil
"Toggle ASCII space and Ethiopic separator for keyboard input."
(interactive)
(setq ethio-prefer-ascii-space
(not ethio-prefer-ascii-space))
(force-mode-line-update))
(defun ethio-insert-space (arg)
"Insert ASCII spaces or Ethiopic word separators depending on context.
If the current word separator (indicated in mode-line) is the ASCII space,
insert an ASCII space. With ARG, insert that many ASCII spaces.
If the current word separator is the colon-like Ethiopic word
separator and the point is preceded by `an Ethiopic punctuation mark
followed by zero or more ASCII spaces', then insert also an ASCII
space. With ARG, insert that many ASCII spaces.
Otherwise, insert a colon-like Ethiopic word separator. With ARG, insert that
many Ethiopic word separators."
(interactive "*p")
(cond
(ethio-prefer-ascii-space
(insert-char 32 arg))
((save-excursion
(skip-chars-backward " ")
(memq (preceding-char)
'(?$(3$h(B ?$(3$i(B ?$(3$j(B ?$(3$k(B ?$(3$l(B ?$(3$m(B ?$(3$n(B ?$(3$o(B ?$(3%t(B ?$(3%u(B ?$(3%v(B ?$(3%w(B ?$(3%x(B)))
(insert-char 32 arg))
(t
(insert-char ?$(3$h(B arg))))
(defun ethio-insert-ethio-space (arg)
"Insert the Ethiopic word delimiter (the colon-like character).
With ARG, insert that many delimiters."
(interactive "*p")
(insert-char ?$(3$h(B arg))
;;
;; Ethiopic punctuation vs. ASCII punctuation
;;
(defvar ethio-prefer-ascii-punctuation nil)
(make-variable-buffer-local 'ethio-prefer-ascii-punctuation)
(defun ethio-toggle-punctuation nil
"Toggle Ethiopic punctuations and ASCII punctuations for keyboard input."
(interactive)
(setq ethio-prefer-ascii-punctuation
(not ethio-prefer-ascii-punctuation))
(let* ((keys '("." ".." "..." "," ",," ";" ";;" ":" "::" ":::" "*" "**"))
(puncs
(if ethio-prefer-ascii-punctuation
'(?. [".."] ["..."] ?, [",,"] ?\; [";;"] ?: ["::"] [":::"] ?* ["**"])
'(?$(3$i(B ?$(3%u(B ?. ?$(3$j(B ?, ?$(3$k(B ?\; ?$(3$h(B ?$(3$i(B ?: ?* ?$(3$o(B))))
(while keys
(quail-defrule (car keys) (car puncs) "ethiopic")
(setq keys (cdr keys)
puncs (cdr puncs)))
(force-mode-line-update)))
;;
;; Gemination
;;
(defun ethio-gemination nil
"Compose the character before the point with the Ethiopic gemination mark.
If the characater is already composed, decompose it and remove the gemination
mark."
(interactive "*")
(cond
((eq (char-charset (preceding-char)) 'ethiopic)
(insert "$(3%s(B")
(compose-region
(save-excursion (backward-char 2) (point))
(point))
(forward-char 1))
((eq (char-charset (preceding-char)) 'leading-code-composition)
(decompose-region
(save-excursion (backward-char 1) (point))
(point))
(delete-backward-char 1))
(t
(error ""))))
;;
(provide 'ethio-util)
;;; ethio-util.el ends here
|