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 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367
|
1997-03-10 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.18 was released.
* filename.el (filename-filters): Use `exec-installed-p' instead
of `file-installed-p' to search "kakasi".
1997-03-10 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* file-detect.el (module-installed-p): Use function
`exec-installed-p'.
* file-detect.el (exec-suffix-list): New variable.
(exec-installed-p): New function.
1997-03-03 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* file-detect.el (file-installed-p): Fixed DOC-string.
1997-02-06 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.17 was released.
1997-02-05 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* char-table.el (char-position-to-string): Don't use
`row-line-to-char'; Don't require char-util.
* char-table.el (char-position-to-string): Use `make-char' instead
of `make-character'.
1997-01-21 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.16 was released.
Sat Jan 18 09:48:31 1997 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* char-util.el (char-to-byte-list): modified for GNU MULE
19.34.91.
Fri Jan 17 05:14:24 1997 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* TL-ELS (tl-modules): Add `char-util' and `char-table' for
XEmacs/mule.
Fri Jan 17 03:09:02 1997 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* char-table.el (show-char-table): modified for GNU MULE 19.34.91.
Tue Jan 14 02:37:32 1997 Martin Buchholz <mrb@Eng.Sun.COM>
* tl-str.el: Add DOC-string of autoload `replace-as-filename'.
Sat Jan 11 17:19:50 1997 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* file-detect.el (add-latest-path): New function.
Wed Jan 1 11:00:25 1997 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.17 was released.
Wed Dec 28 13:57:22 1996 Martin Buchholz <mrb@Eng.Sun.COM>
* mk-tl: Use variable `default-directory' instead of `(getenv
"PWD")'. (cf. [tm-en:1084])
Mon Dec 23 14:57:21 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.16 was released.
Thu Dec 19 10:06:42 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* filename.el (replace-as-filename): Check nil.
Mon Dec 16 13:42:44 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.15 was released.
* TL-ELS (tl-modules): Add filename.el.
* filename.el: New module.
* tl-str.el: Variable `filename-special-char-range' variable
`filename-space-char-range' were abolished.
Function `replace-as-filename' was moved to filename.el.
Wed Dec 4 04:56:28 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.14 was released.
Tue Nov 26 19:55:55 1996 Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
* install.el (install-file): Delete old file instead of chmod.
(install-elisp-module): Ditto.
Tue Nov 26 12:02:00 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* TL-ELS (tl-modules): bitmap.el, x-face-mule.el and
smiley-mule.el were moved to ../bitmap-mule/.
Mon Nov 18 15:03:58 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* TL-ELS: sinfo.el was moved to ../sinfo/.
Sat Nov 16 08:38:57 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.13 was released.
Fri Nov 15 12:10:41 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* mk-tl: add "../emu" to load-path.
* TL-ELS (tl-modules): emu modules were moved to ../emu/.
* install.el (install-detect-elisp-directory): New optional
argument `allow-version-specific'.
Thu Nov 7 20:09:49 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* bitmap.el (charset-bitmap): Renamed from `lc-bitmap'.
* bitmap.el: Function `fontset-height' was renamed to
`fontset-pixel-height' in Emacs/mule.
* emu-e20.el (fontset-pixel-height): Renamed from
`fontset-height'.
* emu-e20.el (fontset-height): fixed.
Thu Oct 24 07:56:18 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.12 was released.
* emu-18.el (data-directory): New variable.
Thu Oct 24 04:08:58 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.11 was released.
Wed Oct 23 06:37:13 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e20.el (charsets-mime-charset-alist): modified for
mule-19.33-delta.
* char-table.el (char-table-1): fixed typo.
Tue Oct 22 22:18:27 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e20.el (mime-charset-to-coding-system): New optional
argument for line-break-type.
Mon Oct 21 02:02:16 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* sinfo.el: for sinfo 6.1.
Sun Oct 20 00:13:58 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (mime-charset-to-coding-system):
New optional argument `lbt'.
Sat Oct 19 15:11:49 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* sinfo.el (sinfo-to-texi): fixed.
* sinfo.el: for sinfo 6.0.
* emu-x20.el: Header was modified.
Wed Oct 16 00:12:13 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.10 was released.
Tue Oct 15 22:58:28 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* TL-ELS (tl-modules): Add `char-util' and `char-table' for
Emacs/mule.
* char-table.el, char-util.el: New module.
* sinfo.el: New module.
Sat Oct 12 19:22:43 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* TL-ELS (tl-modules): Add `texi-util'; add `sinfo' for mule
merged Emacs.
Thu Oct 10 19:42:30 1996 Martin Buchholz <mrb@Eng.Sun.COM>
* emu-x20.el (string-width): fixed typo.
Thu Oct 10 14:21:35 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* texi-util.el: New module.
* ol-to-texi.el: Function `ol-to-texi-add-menu-title' was renamed
to `texinfo-all-menu-titles-update' and moved to texi-util.el.
* tl-str.el: Function `file-name-non-extension' was moved from
ol-to-texi.el.
* ol-to-texi.el: Function `file-name-non-extension' was moved to
tl-str.el.
* ol-to-texi.el: require tl-list.
Mon Oct 7 07:11:36 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e20.el (charset-iso-class): New function.
* tl-list.el (remove-alist): New function.
Sat Oct 5 08:12:16 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* ol-to-texi.el (ol-to-texi-add-menu-title): New function.
Tue Oct 1 15:03:36 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.9 was released.
* bitmap.el: modified for mule-19.33-gamma.
Tue Oct 1 13:28:03 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e19.el, emu-nemacs.el, emu-mule.el
(find-non-ascii-charset-string): New alias.
(find-non-ascii-charset-region): New alias.
Tue Oct 1 13:22:13 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el (find-charset-string): Changed to alias for
`charsets-in-string'.
(find-charset-region): Changed to alias for `charsets-in-region'.
(find-non-ascii-charset-string): New function.
(find-non-ascii-charset-region): New function.
Tue Oct 1 13:18:34 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e20.el (fontset-height): New function.
(find-non-ascii-charset-string): New function; renamed from
`find-charset-string'.
(find-non-ascii-charset-region): New function; renamed from
`find-charset-region'.
(detect-mime-charset-region): Use function `find-charset-string'
instead of `find-charset-in-string'.
Wed Sep 25 12:07:40 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e20.el (truncate-string): check `to' is smaller than length
of string.
Tue Sep 24 22:02:05 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.8 was released.
Mon Sep 23 20:38:05 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el, emu-mule.el (set-buffer-file-coding-system): New
alias.
* emu-e19.el (set-buffer-file-coding-system): Renamed from
`set-file-coding-system'.
* emu-nemacs.el (set-buffer-file-coding-system): New alias for
`set-kanji-fileio-code'; renamed from `set-file-coding-system'.
Mon Sep 23 17:44:23 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.7 was released.
* emu.el (insert-binary-file-contents-literally): New function.
* emu.el (insert-file-contents-literally): New implementation.
Mon Sep 23 14:58:21 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (detect-coding-region): New alias.
Mon Sep 23 14:55:53 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e19.el, emu-nemacs.el (detect-coding-region): Renamed from
`code-detect-region'.
Mon Sep 23 12:36:01 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.6 was released.
* tl-atype.el (set-atype): new option `ignore'.
* tl-atype.el (set-atype): option `replaced-by' was abolished.
Sat Sep 21 20:52:12 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e20.el (mime-charset-coding-system-alist): Add `cn-big5'.
Sat Sep 21 16:29:25 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-18.el: add autoload setting for function `setenv'.
Sat Sep 21 16:23:41 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* TL-ELS (tl-modules): add `env' if `running-emacs-18' is not nil.
Sat Sep 21 16:16:40 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-18.el (parse-colon-path): New function.
Sat Sep 21 16:08:35 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el (path-separator): New variable.
* emu-e20.el (mime-charset-coding-system-alist): add
`iso-2022-int-1'.
Fri Sep 20 07:21:42 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e20.el (mime-charset-coding-system-alist): Add `hz-gb-2312'
and `cn-gb-2312'.
Thu Sep 19 16:30:19 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el (insert-file-contents-literally): New alias for anything
older than Emacs 19.29. (cf. [os2-emacs-ja:427])
Wed Sep 18 13:40:26 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.5 was released.
* emu-nemacs.el, emu-e19.el (as-binary-input-file): New macro.
Wed Sep 18 12:48:09 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e20.el (sset): changed to alias of `string-embed-string'.
Wed Sep 18 08:55:56 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el, emu-mule.el (as-binary-input-file): New macro.
Wed Sep 18 07:39:22 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e20.el (truncate-string): `char-bytes' returns 1 for charset
and `charset-bytes' returns 0 for character.
Tue Sep 17 08:41:36 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e20.el (as-binary-process): Use Common Lisp like quote.
* emu-e20.el (as-binary-input-file): New macro.
* emu-e20.el (as-binary-process): set
`default-process-coding-system' to `no-conversion'.
* TL-ELS (tl-modules): Add bitmap, x-face-mule and smiley-mule if
running mule merged EMACS.
* bitmap.el: modified to support mule merged EMACS.
* emu-e20.el (sset): New function.
* emu-e20.el (make-character): New alias.
* cless.el (define-cless-alias): New function.
Mon Sep 16 11:55:08 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (charset-bytes): New alias.
* emu-e20.el (char-category): New function.
Mon Sep 16 09:22:42 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e20.el (find-charset-string): New function.
Mon Sep 16 09:01:33 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e20.el (find-charset-region): New function.
Sun Sep 15 10:53:59 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* TL-ELS (tl-modules): add genjis for mule merged EMACS.
Sun Sep 15 08:04:02 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.4 was released.
* emu-x20.el: `code-converter-is-broken' was abolished.
Sun Sep 15 07:55:48 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* TL-ELS (tl-modules): Don't use `running-xemacs-20'.
Sun Sep 15 07:53:34 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* TL-ELS (tl-modules): Use variable `running-mule-merged-emacs'
and `running-xemacs-with-mule'.
Sun Sep 15 07:49:19 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-18.el (directory-files): redefine.
Sun Sep 15 07:27:12 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el: Variable `running-xemacs-20' was abolished.
Sun Sep 15 06:53:44 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el (running-mule-merged-emacs, running-xemacs-with-mule):
New variable.
Sat Sep 14 07:57:51 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e20.el (string-to-char-list): New function.
Sat Sep 14 07:44:35 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* TL-ELS (tl-modules): Add emu-e20 for mule merged EMACS.
* emu.el: Use emu-e20 for mule merged EMACS.
* emu-e20.el: New module for mule merged EMACS.
Sat Sep 14 05:07:00 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* smiley-mule.el (smiley-face-bitmap-list): Use "(T_T" instead of
"(T_T)".
Fri Sep 13 04:50:13 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* smiley-mule.el (smiley-face-bitmap-list): Use "(T_T)" instead of
"T_T".
Wed Sep 11 03:47:49 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* smiley-mule.el (smiley-buffer): Don't ignore case.
Sat Sep 7 17:22:15 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.3 was released.
Thu Sep 5 16:31:02 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el (buffer-live-p): DOC fix.
(save-selected-window): DOC fix.
Thu Sep 5 15:30:26 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el (save-selected-window): New macro.
Thu Sep 5 13:28:51 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.2 was released.
* emu-nemacs.el (encode-coding-region): New function.
* emu-nemacs.el (decode-coding-region): New function.
* emu-nemacs.el (encode-coding-string): New function.
Thu Sep 5 12:29:01 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e19.el (decode-coding-region): New function.
(encode-coding-region): New function.
* emu-e19.el (encode-coding-string): New function.
Thu Sep 5 08:58:28 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (charsets-mime-charset-alist): add gb2312
charset. (cf. [kanji:704])
* smiley-mule.el: Comment was fixed. (cf. [tm-ja:2074])
Wed Sep 4 21:20:32 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (encode-coding-region): New function.
* tl-list.el (ASSOC): New function.
Wed Sep 4 19:00:01 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* TL-ELS: add cless.el.
* tl-list.el: Use cless.el if new cl is installed.
Wed Sep 4 18:39:20 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* cless.el: New module.
Wed Sep 4 15:49:30 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* install.el (install-detect-elisp-directory): New function.
Wed Sep 4 13:24:03 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* install.el (install-prefix): New variable.
(install-elisp-prefix): New variable.
(install-default-elisp-directory): New variable.
Wed Sep 4 11:00:37 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el (buffer-live-p): New function. (cf. [tm-ja:2072])
Wed Sep 4 01:25:35 1996 Katsumi Yamaoka <yamaoka@ga.sony.co.jp>
* smiley-mule.el: add DOC-strings for smiley-bitmap-for-*.
Tue Sep 3 15:02:47 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.1 was released.
* ol-to-texi.el: New file.
* smiley-mule.el (smiley-face-bitmap-list): changed from
`smiley-face-bitmap-alist'.
(smiley-buffer): put faces.
(smiley-encode-buffer): delete faces.
* smiley-mule.el (smiley-face-bitmap-alist): cdr was changed to
composed bitmap string.
(smiley-buffer): modified for new `smiley-face-bitmap-alist'
format.
(smiley-encode-buffer): New function.
Tue Sep 3 12:16:49 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* smiley-mule.el: Merge some bitmaps of Yamaoka's
smiley-mule-faces.el. (cf. [tm-ja:2069])
Mon Sep 2 15:54:57 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* TL-ELS: latex-math-symbol.el was moved to MU package.
Mon Sep 2 14:34:00 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-18.el (file-relative-name): New function.
* mk-tl: Constant `el-file-mode' was abolished. Function
`install-el', `install-el-files', `install-elc' and
`install-elc-files' were abolished.
(install-tl): Use function `install-elisp-modules'.
* TL-ELS: Variable `tl-uncompile-el-files', `tl-el-files' and
`tl-elc-files' were abolished.
Mon Sep 2 13:10:54 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* TL-ELS: mu-bbdb.el was moved to ../mu/.
* TL-ELS: std11.el, std11-parse.el tl-822.el and mu-cite.el were
moved to ../mu/; mu-replace.el and mu-comment.el were renamed to
tu-replace.el and tu-comment.el.
* tu-replace.el: mu-replace.el was renamed to tu-replace.el.
* tu-comment.el: mu-comment.el was renamed to tu-comment.el.
Mon Sep 2 08:21:39 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* bitmap.el (bitmap-insert-xbm-file): fixed. (cf. [tm-ja:2057])
Sun Sep 1 16:11:01 1996 Fujikazu OKUNISHI <fuji0924@mbox.kyoto-inet.or.jp>
* tl-822.el (rfc822/field-end): fixed a typo. (cf. [tm-ja:2056])
Sat Aug 31 15:08:42 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61 was released.
Fri Aug 30 16:12:22 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-list.el (list*): New function.
* std11.el (std11-find-field-body): New function.
Fri Aug 30 15:14:30 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-xemacs.el (next-visible-point): fixed. (cf. [tm-en:719])
* install.el (install-file): check write
permission. (cf. [bug-tm-en:720])
Fri Aug 30 06:11:58 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* std11.el (std11-addr-to-string): Add DOC-string.
(std11-address-string): Add DOC-string.
(std11-full-name-string): Add DOC-string.
Fri Aug 30 04:25:34 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* mu-cite.el (mu-cite/get-field-value): Function
`std11-find-field-body' was renamed to `std11-field-body'.
* mu-cite.el (mu-cite/get-field-value-method-alist): Function
`std11-find-field-body' was renamed to `std11-field-body'.
* tl-822.el (rfc822/get-field-body): Function
`std11-find-field-body' was renames to `std11-field-body'.
(rfc822/get-field-bodies): Function `std11-find-field-bodies' was
renames to `std11-field-bodies'.
* std11.el (std11-field-body): Renamed from
`std11-find-field-body'.
(std11-field-bodies): Renamed from `std11-find-field-bodies'.
Wed Aug 28 22:52:29 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* std11.el (std11-parse-addresses-string): New function.
* mu-cite.el: Use std11.el instead of tl-822.el.
Wed Aug 28 21:06:59 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* std11.el (std11-full-name-string): New function.
* tl-822.el (rfc822/full-name-string): New alias for
`std11-full-name-string'; moved to std11.el.
* std11.el (std11-addr-to-string): eliminate comments.
* std11.el (std11-addr-to-string): New function; moved from
tl-822.el.
(std11-address-string): New function; moved from tl-822.el.
* tl-822.el (rfc822/address-string): New aliases for
`std11-address-string'; moved to std11.el.
* std11.el (std11-parse-address-string): moved from
std11-parse.el.
* std11-parse.el: Function `std11-parse-address-string' was moved
to std11.el.
Wed Aug 28 20:45:00 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* TL-ELS: Add std11.el and std11-parse.el.
* tl-822.el (rfc822/extract-address-components): Use function
`std11-parse-address-string'.
* std11.el (std11-parse-address-string): Add as autoload function.
* std11-parse.el (std11-parse-address-string): New function.
Wed Aug 28 20:34:53 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* std11-parse.el: Parser were moved from tl-822.el and renamed to
`std11-*'.
* std11.el (std11-parse-address, std11-parse-addresses): Add as
autoload function.
* tl-822.el: Parser were moved to std11-parse.el and renamed to
`std11-*'.
(rfc822/parse-address): New aliases for `std11-parse-address'.
(rfc822/parse-addresses): New aliases for `std11-parse-addresses'.
Wed Aug 28 18:18:03 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* std11.el: Remove autoload for `std11-analyze-*'.
Add `std11-lexical-analyze' as autoload function of std11-parse.
Wed Aug 28 18:15:17 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el: Alias `rfc822/analyze-spaces',
`rfc822/analyze-special', `rfc822/analyze-atom',
`rfc822/analyze-quoted-string', `rfc822/analyze-domain-literal',
and `rfc822/analyze-comment' were abolished.
Wed Aug 28 18:12:56 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/lexical-analyze): New alias for
`std11-lexical-analyze'; moved to std11-parse.el.
* std11-parse.el (std11-lexical-analyze): New function.
* tl-822.el (rfc822/analyze-comment): New alias; new
implementation.
* std11-parse.el (std11-check-enclosure): New function; changed
from `std11-analyze-enclosure'.
(std11-analyze-quoted-string): Use function
`std11-check-enclosure'.
(std11-analyze-domain-literal): Use function
`std11-check-enclosure'.
(std11-analyze-comment): New function.
* tl-822.el (rfc822/analyze-domain-literal): New alias.
* std11-parse.el (std11-analyze-domain-literal): New function.
* std11-parse.el (std11-analyze-enclosure): New function.
(std11-analyze-quoted-string): New implementation.
* std11-parse.el (std11-analyze-quoted-string): New function.
* tl-822.el (rfc822/analyze-quoted-string): New alias for
`std11-analyze-quoted-string'; moved to std11-parse.el.
Wed Aug 28 17:16:30 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/analyze-atom): New alias for
`std11-analyze-atom'; New implementation.
* std11-parse.el (std11-analyze-atom): New function.
* std11.el: Add `std11-analyze-special' as autoload function of
std11-parse.
* std11-parse.el (std11-analyze-special): New function.
* tl-822.el (rfc822/analyze-special):
New alias for `std11-analyze-special'; moved
to std11-parse.el.
* std11.el: autoload std11-parse for `std11-analyze-spaces'.
* std11-parse.el: New module.
* tl-822.el (rfc822/analyze-spaces): New alias for
`std11-analyze-spaces'; moved to std11-parse.el.
Wed Aug 28 15:39:00 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el, std11.el: Function `std11-field-names' was renamed to
`std11-collect-field-names'.
Wed Aug 28 15:26:10 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el, std11.el: Function `std11-field-bodies' was renamed
to `std11-find-field-bodies'.
Wed Aug 28 15:18:03 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* mu-cite.el
(mu-cite/get-field-value-method-alist, mu-cite/get-field-value):
Function `std11-field-body' was renamed to
`std11-find-field-body'.
* tl-822.el, std11.el: Function `std11-field-body' was renamed to
`std11-find-field-body'.
Wed Aug 28 15:11:19 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* std11.el (std11-unfold-string): New function.
Wed Aug 28 14:40:33 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/unfolding-string): New alias for
`std11-unfold-string'; moved to std11.el.
Wed Aug 28 14:17:21 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* std11.el (std11-field-body): fixed.
* mu-cite.el: Use function `std11-field-body' instead of
`rfc822/get-field-body'.
* x-face-mule.el: Use std11.el.
* std11.el (std11-field-bodies): New function.
* tl-822.el (rfc822/get-field-bodies): New alias for
`std11-field-bodies'; moved to std11.el.
* tl-822.el: Constant `rfc822/field-name-regexp' was abolished.
* tl-822.el: Constant `rfc822/field-top-regexp' was abolished.
* std11.el (std11-field-names): New function.
* tl-822.el (rfc822/get-field-names): New alias for
`std11-field-names'; moved to std11.el.
* tl-822.el: Constant `rfc822::next-field-top-regexp' was
abolished.
* std11.el (std11-field-body): New function.
* tl-822.el (rfc822/get-field-body): New alias for
`std11-field-body'; moved to std11.el.
* std11.el (std11-next-field-head-regexp): New constant.
* std11.el: New module.
* tl-822.el (rfc822/narrow-to-header): New alias for
`std11-narrow-to-header'; moved to std11.el.
(rfc822/get-header-string): New alias for `std11-header-string';
moved to std11.el.
(rfc822/get-header-string-except): New alias for
`std11-header-string-except'; moved to std11.el.
(rfc822/field-end): New alias for `std11-field-end'; moved to
std11.el.
* tl-seq.el: autoload for cl.el does not work to load cl-seq. (cf.
[tm-en:709,710])
Fri Aug 23 07:28:37 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.48 was released.
Thu Aug 22 16:21:21 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (set-process-input-coding-system): New alias.
Wed Aug 21 12:08:41 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* install.el (install-elisp-module, install-elisp-modules): New
function.
* file-detect.el (module-installed-p): New function.
Mon Aug 19 17:38:23 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* install.el (install-files): New argument `overwrite'.
* install.el (install-overwritten-file-modes): New variable.
(install-file): Use variable `install-overwritten-file-modes'.
* install.el (install-file, install-files): New function.
* emu-mule.el (charsets-mime-charset-alist): add iso-2022-int-1 as
the largest MIME charset.
Sun Aug 18 20:38:49 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* TL-ELS (tl-modules): Changed to list of symbols.
* mk-tl (compile-tl): Use function `compile-elisp-modules'.
* mk-tl: tl-els was renamed to TL-ELS.
* install.el: Initial revision
* emu-mule.el (charsets-mime-charset-alist): add lc-roman and
lc-jpold to iso-2022-jp, iso-2022-jp-2 and iso-2022-int-1.
* emu-18.el (buffer-undo-list): define default variable as nil.
* tl-list.el (put-alist): New implementation.
* tl-list.el (put-alist): Use `setcdr' instead of `rplacd'.
Sun Aug 18 08:10:43 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-list.el (set-alist): New implementation.
* tl-list.el (put-alist): DOC-string was modified.
Sun Aug 18 07:30:38 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el: Alias `tl:read-string' was abolished.
Sun Aug 18 07:29:06 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* mu-cite.el (mu-cite/get-prefix-register-verbose-method): Use
`read-string' instead of `tl:read-string'.
* mu-cite.el (mu-cite/get-prefix-register-method): Use
`read-string' instead of `tl:read-string'.
* mu-bbdb.el (mu-cite/get-bbdb-prefix-register-method): Use
`read-string' instead of `tl:read-string'.
(mu-cite/get-bbdb-prefix-register-verbose-method): Use
`read-string' instead of `tl:read-string'.
* emu.el: Redefine `read-string' for EMACS 19.28 or earlier.
Sun Aug 18 06:39:40 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-nemacs.el (decode-coding-string): New function.
Sat Aug 17 03:25:51 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e19.el (mime-charset-to-coding-system): New function.
* emu-e19.el (decode-coding-string): New function.
* emu-mule.el: Function `character-decode-string' was renamed to
`decode-coding-string'.
Fri Aug 16 06:06:40 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-seq.el: comment was modified.
Fri Aug 16 06:05:21 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-seq.el: Don't autoload `position-if-not'.
* tl-seq.el: Function `position-mismatched' was abolished.
* tl-822.el (rfc822/analyze-comment): Use `string-match' instead
of `position-mismatched'.
* tl-822.el (rfc822/analyze-domain-literal): New implementation.
* tl-822.el (rfc822/analyze-atom): New implementation.
* tl-822.el (rfc822/analyze-spaces): New implementation.
Fri Aug 16 05:02:08 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-seq.el: require file-detect.
Fri Aug 16 04:59:13 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* genjis.el: Use function `find-if' instead of `some-element'.
* tl-seq.el: Function `some-element' was abolished.
Fri Aug 16 04:36:45 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* file-detect.el (add-path): moved from tl-misc.el.
* tl-misc.el: Function `add-path' was moved to file-detect.el.
Fri Aug 16 04:32:46 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* file-detect.el (get-latest-path): moved from tl-misc.el.
* tl-misc.el: Function `get-latest-path' was moved to
file-detect.el.
Fri Aug 16 04:27:54 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-misc.el, tl-seq.el, tl-els, file-detect.el: module.el was
renamed to file-detect.el.
Fri Aug 16 04:06:42 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-seq.el, tl-misc.el, tl-els, module.el: install.el was renamed
to module.el.
Fri Aug 16 03:27:50 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-seq.el: Use `file-installed-p'.
Fri Aug 16 03:09:15 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-seq.el: Don't use cl.el if cl-seq.el is not found.
Fri Aug 16 03:00:43 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-els: Add install.el.
* install.el: Initial revision
* tl-misc.el: Function `file-installed-p' was moved to install.el.
Fri Aug 16 02:04:24 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-els: Add range.el.
Fri Aug 16 02:02:55 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* range.el: New module.
* tl-list.el: Range functions were moved to range.el.
* tl-list.el: Don't use cl.el for EMACS 18.
Wed Aug 14 23:11:07 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-seq.el: Use cl.el; Don't define function `find' if it is
already exist.
Wed Aug 14 02:32:13 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-list.el: `(autoload 'last "cl")' instead of `(require 'cl)'.
Wed Aug 14 02:15:12 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-str.el (replace-space-with-underline): fixed problem in
XEmacs 20.
Wed Aug 14 01:19:22 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-list.el (map-union): Use `nreverse' instead of `reverse'.
* tl-list.el (index): Use `nreverse' instead of `reverse'.
Wed Aug 14 01:01:06 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-list.el (permute): Use `nconc'.
Wed Aug 14 00:53:35 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-list.el (every-combination): Use `nreverse' instead of
`reverse'.
Wed Aug 14 00:47:47 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-list.el (except-nth): New implementation.
* tl-list.el (nexcept-nth): New function.
Wed Aug 14 00:24:14 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-list.el (nnth-prev): New function.
(nth-prev): New implementation.
Tue Aug 13 23:55:20 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-list.el: Function `butlast' and `nbutlast' were abolished;
Use cl.el.
Tue Aug 13 23:46:50 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-list.el: Function `last' was abolished.
* tl-list.el: Function `subsetp' was abolished.
* tl-list.el: Function `cadr' was abolished.
* tl-list.el: Function `caar' was abolished.
Tue Aug 6 12:18:37 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.44 was released.
Mon Aug 5 15:15:18 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (mime-charset-coding-system-alist): add `x-ctext'.
(default-mime-charset): default value was changed to `x-ctext'.
Thu Aug 1 06:43:54 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.43.2 was released.
* tl-els: x-face-mule.el was added for MULE.
* x-face-mule.el: Function `bitmap-decode-x-face' was renamed to
`x-face-decode-message-header'.
* x-face-mule.el: Variable `bitmap-uncompface-program' was renamed
to `uncompface-program'.
* bitmap.el: X-Face features were split into x-face-mule.el.
* x-face-mule.el: Initial revision
Thu Aug 1 06:20:16 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* bitmap.el: Function `bitmap-show-xbm-file' was renamed to
`bitmap-insert-xbm-file'.
* bitmap.el: Function `bitmap-show-xbm-buffer' was renamed to
`bitmap-insert-xbm-buffer'.
* smiley-mule.el (smiley-buffer, smiley-region): New
implementation.
* smiley-mule.el (smiley-face-bitmap-alist): Renamed from variable
`smiley-face-bitmap-alist'; key part was changed to normal string
from regexp.
Wed Jul 31 04:41:17 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* smiley-mule.el: Variable `smiley-weep-bitmap' was renamed to
`smiley-bitmap-for-weep'.
* smiley-mule.el: Variable `smiley-ase3-bitmap' was renamed to
`smiley-bitmap-for-ase3'.
* smiley-mule.el: Variable `smiley-ase2-bitmap' was renamed to
`smiley-bitmap-for-ase2'.
* smiley-mule.el: Variable `smiley-ase-bitmap' was renamed to
`smiley-bitmap-for-ase'.
* smiley-mule.el: Variable `smiley-winking-bitmap' was renamed to
`smiley-bitmap-for-winking'.
* smiley-mule.el: Variable `smiley-smile-bitmap' was renamed to
`smiley-bitmap-for-smile'.
Mon Jul 29 20:47:32 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-els: latex-math-symbol.el was added for all mule variants.
* latex-math-symbol.el: New module for mule.
Mon Jul 29 20:20:18 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-els: smiley-mule.el was added.
* smiley-mule.el: New module for MULE.
Fri Jul 26 20:04:15 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* bitmap.el (bitmap-read-xbm-file): New function.
Fri Jul 26 19:40:29 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* bitmap.el: Function `bitmap-show-xbm' was renamed to
`bitmap-show-xbm-buffer'.
* bitmap.el (bitmap-show-xbm-file): New function; renamed from
`bitmap-read-xbm'.
* bitmap.el (bitmap-show-xbm): New implementation; use function
`bitmap-read-xbm-buffer' and `bitmap-decode-xbm'.
* bitmap.el (bitmap-read-xbm-buffer): New function.
* bitmap.el (bitmap-decode-xbm): New function.
Fri Jul 26 12:08:55 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-18.el (buffer-undo-list): New variable for EMACS 18.55.
Tue Jul 23 14:58:47 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.43.1 was released.
* emu.el (emacs-minor-version): fixed for NEpoch.
Mon Jul 22 18:54:54 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-xemacs.el, emu-19.el, emu-18.el
(enable-invisible): New macro.
(end-of-invisible): New macro.
* emu-x20.el: add `(require 'cyrillic)'.
Wed Jul 17 05:35:50 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.43 was released.
Mon Jul 15 08:29:22 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el: Alias `character-decode-region' was abolished.
* emu-x20.el: Alias `character-decode-string' was abolished.
* emu-e19.el, emu-nemacs.el, emu-mule.el: Function
`character-decode-region' was abolished.
* emu-e19.el, emu-nemacs.el: Function `character-decode-string'
was abolished.
Sun Jul 14 15:00:32 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-nemacs.el (encode-mime-charset-region): check kanji-code.
(decode-mime-charset-region): check kanji-code.
Sun Jul 14 14:56:46 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e19.el, emu-nemacs.el, emu-x20.el, emu-mule.el
(decode-mime-charset-region): New function.
Sun Jul 14 12:24:45 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el: Alias `character-encode-region' was abolished.
* emu-e19.el, emu-nemacs.el, emu-mule.el: Function
`character-encode-region' was abolished.
Sun Jul 14 12:18:35 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (decode-mime-charset-string): Use function
`character-decode-string'.
Sun Jul 14 11:47:20 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el, emu-e19.el, emu-nemacs.el: Function
`character-encode-string' was abolished.
* emu-x20.el: Alias `character-encode-string' was abolished.
Sun Jul 14 11:29:02 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-nemacs.el, emu-e19.el, emu-x20.el, emu-mule.el
(decode-mime-charset-string): New function.
Thu Jul 11 14:11:12 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.36 was released.
* emu.el (emacs-minor-version): New variable for Emacs 18.
Thu Jul 11 13:59:54 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-nemacs.el (charsets-mime-charset-alist): New variable.
(default-mime-charset): New variable.
(mime-charset-coding-system-alist): New variable.
(mime-charset-to-coding-system): New function.
(detect-mime-charset-region): New function.
(encode-mime-charset-region): New function.
(encode-mime-charset-string): New function.
Thu Jul 11 09:04:23 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el (charsets-to-mime-charset): New function; moved from
emu-*.el.
Thu Jul 11 08:58:54 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el, emu-mule.el, emu-e19.el: Function
`charsets-to-mime-charset' was moved to emu.el.
* emu-e19.el (charsets-mime-charset-alist): New variable.
(default-mime-charset): New variable.
(charsets-to-mime-charset): New function.
(detect-mime-charset-region): New function.
(encode-mime-charset-region): New function.
(encode-mime-charset-string): New function.
Wed Jul 10 13:58:11 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el (encode-mime-charset-region): New function.
(encode-mime-charset-string): New function.
Wed Jul 10 13:55:09 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el (detect-mime-charset-region): New function.
* emu-x20.el (mime-charset-to-coding-system): New function.
* emu-x20.el (mime-charset-coding-system-alist): New variable.
* emu-x20.el (charsets-to-mime-charset): New function.
* emu-x20.el (default-mime-charset): New variable.
* emu-x20.el: charset constants were abolished.
(charsets-mime-charset-alist): New variable.
* emu-mule.el: charset constants were abolished.
Wed Jul 10 12:54:46 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (encode-mime-charset-string): New function.
Wed Jul 10 11:58:23 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (encode-mime-charset-region): New function.
Tue Jul 9 13:16:23 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.31.1 was released.
* mu-replace.el (edit-replace-mode-map): Use function
`copy-keymap'.
Mon Jul 8 07:46:02 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (mime-charset-to-coding-system): New function.
* emu-mule.el (mime-charset-coding-system-alist): New variable.
* emu-mule.el (detect-mime-charset-region): New function.
* emu-mule.el (charsets-to-mime-charset): New function.
Mon Jul 8 06:49:48 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-list.el (subsetp): wrote doc-string.
* emu-mule.el (default-mime-charset): New variable.
* emu-mule.el (charsets-mime-charset-alist): New variable.
Thu Jul 4 16:57:52 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* mu-cite.el (compress-cited-prefix): check Message-Id.
* mu-cite.el (compress-cited-prefix): fixed.
Wed Jul 3 06:27:10 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el (running-emacs-19_29-or-later): fixed.
Wed Jul 3 05:59:24 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el (running-xemacs-20-or-later): New variable.
(running-xemacs-19_14-or-later): Use variable
`running-xemacs-20-or-later'.
* emu.el (running-emacs-19_29-or-later): fixed.
Sun Jun 30 01:00:37 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el (char-category): New function.
Sat Jun 29 08:23:05 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* mu-cite.el (fill-cited-region):
modified about fill-prefix collecting.
Sat Jun 29 08:03:34 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-str.el (string-compare-from-top): New function.
Thu Jun 27 17:29:23 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.31 was released.
* mu-cite.el (mu-cite/make-methods): run-hooks
`mu-cite/instantiation-hook'.
Wed Jun 26 15:33:39 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (character-decode-string): New implementation.
Wed Jun 26 08:41:17 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el (code-converter-is-broken): XEmacs 20.0 beta 26 is
broken too.
* emu-mule.el, emu-e19.el, emu-nemacs.el, emu-x20.el
(as-binary-process): New macro.
Wed Jun 19 23:24:56 1996 Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
* mu-cite.el: NISHIJIMA Takanori
<racsho@studio-racsho.shibuya.tokyo.jp>'s patch was applied with
some modifications. (cf. [tm-ja:1935])
Mon Jun 17 23:49:48 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (regulate-latin-char, regulate-latin-string): New
function.
Mon Jun 17 23:47:19 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/qtext-regexp, rfc822/quoted-string-regexp):
new constant; define again.
Thu Jun 13 17:13:13 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el: Variable `rfc822/qtext-regexp' and
`rfc822/quoted-string-regexp' were abolished.
* tl-822.el: Function `rfc822/analyze-quoted-pair' was abolished.
* tl-822.el (rfc822/analyze-quoted-string): New implementation.
Wed Jun 12 05:28:42 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.30 was released.
Wed Jun 12 03:55:10 1996 Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
* mu-cite.el (mu-cite/cite-original): Run `mu-cite/pre-cite-hook'
after narrowing to the message.
Mon Jun 10 07:59:23 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el (code-converter-is-broken): XEmacs 20.0 beta 24 is
broken too.
Mon Jun 10 07:37:33 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el (char-length): New function.
Mon Jun 10 07:34:46 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e19.el, emu-mule.el, emu-nemacs.el (char-length): New alias.
Mon Jun 3 14:36:59 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.29.1 was released.
* emu-x20.el (code-converter-is-broken): XEmacs 20.0 beta 22 is
broken too.
Tue May 28 06:48:04 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.29 was released.
* mu-comment.el (comment-sexp): Unused local variable `p' was
abolished.
Tue May 28 06:30:51 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e19.el, emu-nemacs.el (charset-description): New function.
(charset-registry): New function.
(charset-columns): New function.
(charset-direction): New function.
Mon May 27 14:04:12 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.27.1 was released.
* emu-mule.el (charset-*): New constants.
* emu-x20.el (charset-*): New constants.
(charset-description): New alias.
* emu-e19.el (char-charset):
Use constant `charset-ascii' and `charset-latin-1'.
Mon May 27 12:17:42 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-nemacs.el (char-charset): Use constant `charset-ascii' and
`charset-jisx0208'.
* emu-nemacs.el (charset-ascii): New constant.
(charset-jisx0208): New constant.
Mon May 27 12:06:05 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (charset-description): New alias.
(charset-registry): New alias.
(charset-columns): New alias.
(charset-direction): New alias.
Mon May 27 11:28:24 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (string-columns): New alias.
* emu-nemacs.el, emu-e19.el, emu-x20.el (string-columns): New
alias; You should use it instead of `string-width'.
Mon May 27 10:07:19 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-nemacs.el (truncate-string): Use function `char-columns'
instead of `char-width'.
Mon May 27 10:01:14 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (char-columns): New alias.
* emu-nemacs.el, emu-e19.el, emu-x20.el (char-columns): New
function; You should use it instead of `char-width'.
Sat May 25 20:23:36 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-xemacs.el (invisible-p): New function.
(next-visible-point): New function.
Sat May 25 20:21:22 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-19.el (invisible-p): New function.
(next-visible-point): New function.
Sat May 25 20:14:52 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-18.el (invisible-p): New function.
(next-visible-point): New function.
Sat May 25 19:51:23 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-18.el (invisible-region): New function.
(visible-region): New function.
Sat May 25 19:28:13 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-xemacs.el (invisible-region): New function.
(visible-region): New function.
Sat May 25 19:22:50 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-19.el (invisible-region): New function.
(visible-region): New function.
Thu May 23 01:31:02 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.27 was released.
Wed May 22 02:51:33 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/address-string): Unused local variable
`addr-spec' was abolished.
Mon May 20 15:52:28 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.26 was released.
* emu-x20.el (code-converter-is-broken): XEmacs 20.0 beta 20 is
broken too.
Mon May 20 15:51:11 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/parse-addr-spec): Unused local variable
`at-sign' was abolished.
Mon May 20 13:08:14 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* mu-cite.el (citation-mark-chars): New variable.
(compress-cited-prefix): Use variable `citation-mark-chars'.
Fri May 17 08:12:46 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.25 was released.
* tl-822.el (rfc822/analyze-comment): Unused local variable `chr'
was abolished.
Wed May 15 14:23:50 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.24 was released.
* tl-822.el (rfc822/lexical-analyze): Unnecessary local variable
`len' was abolished.
Wed May 15 14:19:45 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/lexical-analyze): Unnecessary local variable
`i' was abolished.
Wed May 15 14:12:22 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-list.el (permute): Unnecessary local variable `ret' was
abolished.
Wed May 15 14:05:34 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el (string-to-int-list): New function; moved from
em-xemacs.el.
* emu-xemacs.el: Function `string-to-int-list' for XEmacs 19 was
deleted, for XEmacs 20 with Mule was moved to emu-x20.el.
* emu-x20.el, emu-e19.el: rearrangement.
Tue May 14 16:28:33 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el: rearrangement.
* emu-mule.el (string-to-int-list): New alias; moved from emu-19.el.
Tue May 14 16:23:29 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e19.el (string-to-int-list): New alias; moved from emu-19.el.
* emu-19.el: Alias `string-to-int-list' was moved to emu-e19.el
and emu-mule.el.
Tue May 14 06:55:46 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* mu-cite.el (compress-cited-prefix): New function.
Tue May 14 02:41:20 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.22.5 was released.
* emu-x20.el (code-converter-is-broken): XEmacs 20.0 beta 19 is
broken too.
Sat May 11 08:36:35 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.22.4 was released.
* emu.el (add-to-list): New function for Emacs 19.28 or earlier.
Thu May 9 16:38:20 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (fontset-pixel-size): New implementation.
Thu May 9 15:09:00 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-18.el (tl:add-text-properties): New function; moved from
emu-nemacs.el or emu-mule.el.
* emu-mule.el, emu-nemacs.el: Function `tl:add-text-properties'
was moved to emu-18.el.
Thu May 9 15:01:57 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-18.el (remove-text-properties): New function.
* emu-nemacs.el (character-encode-string):
Renamed from `encode-coding-string'.
(character-decode-string): Renamed from `decode-coding-string'.
Thu May 9 14:26:27 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e19.el (character-encode-string): Renamed from
`encode-coding-string'.
(character-decode-string): Renamed from `decode-coding-string'.
Thu May 9 14:07:02 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (character-encode-string): Renamed from
`encode-coding-string'.
(character-decode-string): Renamed from `decode-coding-string'.
Thu May 9 13:48:25 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el (character-encode-string, character-decode-string):
New alias.
* emu-x20.el (character-encode-region, character-decode-region):
New alias.
Thu May 9 13:22:18 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e19.el (character-encode-region): New function.
(character-decode-region): New function.
Function `encode-coding-region' and `decode-coding-region' were
abolished.
Thu May 9 12:54:58 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (character-encode-region): New function.
(character-decode-region): New function.
Function `encode-coding-region' and `decode-coding-region' were
abolished.
Thu May 9 12:45:03 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-nemacs.el (character-encode-region): fixed for NEmacs bug?
(character-decode-region): fixed for NEmacs bug?
* emu-nemacs.el (code-convert-region): fixed for NEmacs bug?
(character-encode-region): New function.
(character-decode-region): New function.
Function `encode-coding-region' and `decode-coding-region' were
abolished.
Wed May 8 13:56:30 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.22.3 was released.
* tl-list.el (last): New implementation.
Tue May 7 18:16:38 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.22.2 was released.
* emu-x20.el (*hz*, *big5*, *euc-kr*, *koi8*): New constant.
Tue May 7 17:50:26 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el (running-xemacs-19): Definition was changed.
(running-xemacs-20): Definition was changed.
Tue May 7 17:15:31 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-els: bitmap.el must be regarded as Mule depended module.
Tue May 7 16:40:44 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el (xemacs-beta-version): New variable.
(code-converter-is-broken): Use variable `xemacs-beta-version'.
Tue May 7 07:00:50 1996 Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
* emu.el, mu-bbdb.el, mu-cite.el: KOBAYASHI Shuhei's address was
changed.
Tue May 7 06:29:59 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el (running-xemacs-19_14-or-later): New variable.
setting for text/enriched and text/richtext.
Mon Apr 29 06:30:47 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.22.1 was released.
Sun Apr 28 16:53:05 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el (find-charset-string, find-charset-region): don't
include ascii.
Sat Apr 27 19:08:03 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el (lc-ascii, lc-ltn1, lc-ltn2, lc-ltn3, lc-ltn4,
lc-crl, lc-arb, lc-grk, lc-hbw, lc-ltn5, lc-jp, lc-jp2, lc-kr,
lc-big5-1, lc-big5-2, lc-cn, lc-cns1, lc-cns2, lc-cns3, lc-cns4,
lc-cns5, lc-cns6, lc-cns7): New constant.
Sat Apr 27 15:43:06 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* bitmap.el (bitmap-show-xbm): `j' should be defined as local
variable.
* tl-els: add emu-x20.el.
Sat Apr 27 15:25:33 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el: require emu-x20 if running XEmacs 20 with Mule feature.
Sat Apr 27 15:24:00 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-x20.el: New module for XEmacs 20 with Mule.
Sat Apr 27 13:48:55 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-e19.el (decode-coding-region): New function.
(encode-coding-region): New function.
(decode-coding-string): New function.
(encode-coding-string): New function.
Sat Apr 27 13:36:32 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-nemacs.el (decode-coding-region): New function.
(encode-coding-region): New function.
(decode-coding-string): New function.
(encode-coding-string): New function.
* emu-nemacs.el: KOBAYASHI Shuhei's address was changed.
Sat Apr 27 13:27:06 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el (decode-coding-region): New function.
(encode-coding-region): New function.
(decode-coding-string): New function.
(encode-coding-string): New function.
* tl-els: emu-19.el was renamed to `emu-e19.el'.
* emu-mule.el (fontset-pixel-size): New implementation.
Sat Apr 27 11:21:45 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el, emu-e19.el: emu-orig.el was renamed to `emu-e19.el'.
* emu-nemacs.el, emu-e19.el: Alias `get-lc' was abolished.
* emu-mule.el: Function `get-lc' was abolished.
Fri Apr 26 05:28:30 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.22 was released.
* tl-els: Version check for enriched.el was fixed for XEmacs 19.14.
Fri Apr 26 02:45:12 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* bitmap.el (bitmap-decode-x-face): New function.
(bitmap-uncompface-program): New variable.
* bitmap.el: New module.
Thu Apr 25 22:15:52 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/get-field-names): New function.
Thu Apr 25 21:30:12 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/get-field-bodies): New argument `boundary';
use function `rfc822/narrow-to-header'.
* tl-822.el (rfc822/get-field-body): add new argument `boundary';
use function `rfc822/narrow-to-header'.
* tl-822.el (rfc822/narrow-to-header): New function.
(rfc822/get-header-string): Use function `rfc822/narrow-to-header'.
(rfc822/get-header-string-except): Use function
`rfc822/narrow-to-header'.
Thu Apr 25 16:15:12 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/get-header-string,
rfc822/get-header-string-except): Argument `boundary' is changed
to optional.
* tl-822.el (rfc822/get-header-string): New function.
Thu Apr 25 15:04:17 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/get-field-bodies): New function.
Thu Apr 25 13:22:26 1996 Michael Sperber <sperber@informatik.uni-tuebingen.de>
* tl-list.el (caar, cadr, last, butlast): changed to function
because these macros in tl-list.el screw up at least the loop
macro in CL which causes other lossage. (cf. [tm-en:467])
Thu Apr 25 12:08:33 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.19.3 was released.
Wed Apr 24 15:27:17 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-orig.el (sref): New alias.
* emu-mule.el (char-charset): New alias.
Wed Apr 24 13:46:56 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-nemacs.el, emu-orig.el: Function `char-leading-char' was
renamed to `char-charset'; `char-leading-char' became alias of
function `char-charset'.
* tl-str.el (replace-char-by-char): abolished.
* emu-nemacs.el (sref): fixed.
* emu-nemacs.el (string-to-int-list): moved from emu-18.el.
* emu-18.el (string-to-int-list): moved to emu-nemacs.el.
* emu-xemacs.el, emu-19.el (string-to-int-list): fixed to define.
* emu-18.el (string-to-int-list): fixed.
Wed Apr 24 00:57:07 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* mu-replace.el: defvar for global variables.
* tl-misc.el (get-latest-path): New implementation.
Wed Apr 24 00:16:45 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-str.el (filename-special-char-range): use function `char-int'
and `string-to-int-list'.
* emu-xemacs.el, emu-19.el, emu-18.el (string-to-int-list):
New function.
* emu.el (char-int): New function.
(int-char): New function.
Sat Apr 20 13:10:42 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.19.2 was released.
Fri Apr 19 19:24:32 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/parse-addresses): use `nreverse'
* tl-822.el (rfc822/parse-group): use `nreverse'
* tl-822.el (rfc822/parse-token-or-comment): use `nreverse'
* tl-822.el (rfc822/parse-ascii-token): use `nreverse'
* tl-822.el (rfc822/parse-token): use `nreverse'
* tl-822.el (rfc822/lexical-analyze): use `nreverse'
Fri Apr 19 18:48:55 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/address-string): support group
(rfc822/full-name-string): support group
Fri Apr 19 07:44:39 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-seq.el (foldr): fixed
Fri Apr 19 07:26:08 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-seq.el (foldl): use `1+'
* tl-seq.el (foldr): New function
Wed Apr 17 15:18:54 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-mule.el: use `running-emacs-19' and `running-emacs-18'.
* emu-nemacs.el: delete definition of `emacs-major-version'.
* emu-orig.el: use `running-emacs-19'.
* emu.el: define `emacs-major-version' if not bound.
* emu-mule.el: delete check and define `emacs-major-version'.
* emu-orig.el: use `running-xemacs'.
Mon Apr 15 08:57:58 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.19.1 was released.
* tl-822.el (rfc822/parse-ascii-token): does not exit from loop
even if token-value is nil.
* tl-822.el (rfc822/parse-ascii-token): nil check for token-value
Sun Apr 14 00:11:18 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el (running-emacs-18, running-emacs-19): New variable
* emu.el (running-emacs-19_29-or-later): New variable
Sat Apr 13 23:46:09 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu.el (running-xemacs): New variable
Thu Apr 11 14:13:56 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* mu-comment.el (comment-sexp-first-line-method-alist): New variable
(comment-sexp-middle-line-method-alist): New variable
(comment-sexp-last-line-method-alist): New variable
(comment-sexp-middle-line-method-for-lisp): New function
(comment-sexp-middle-line-method-for-c++): New function
(comment-sexp-first-line-method-for-c): New function
(comment-sexp-middle-line-method-for-c): New function
(comment-sexp-last-line-method-for-c): New function
(comment-sexp-last-line-method-for-dummy): New function
(comment-sexp): Call methods instead od insert directly
Thu Apr 11 01:05:58 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-xemacs.el (char-list-to-string): New macro
* emu-19.el (char-list-to-string): New macro; moved from tl-str.el
* emu-18.el (char-list-to-string): New function
* tl-str.el: Macro `char-list-to-string' were moved to emu-*.el
Tue Apr 9 20:42:59 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-list.el (poly-funcall): New function
Sun Apr 7 00:37:48 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-misc.el (get-latest-path): New function
Sat Apr 6 21:35:59 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-str.el (version-to-list): New function
(version<, version<=, version>, version>=): New function
Sat Apr 6 21:31:32 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-str.el (expand-char-ranges): New function
Mon Mar 25 12:00:57 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.19 was released.
Mon Mar 25 10:43:00 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* emu-18.el (force-mode-line-update): New function; imported from
Emacs 19.30.
Mon Mar 25 10:21:25 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/parse-ascii-token): check token instead of
(cdr token).
Tue Mar 19 13:21:58 1996 KON-NO Yoichi <itokon@ssel.toshiba.co.jp>
* mu-cite.el: use `(mark t)' instead of `(mark)'.
(cf. [tm-ja:1673])
Fri Mar 15 10:50:41 1996 Shuhei KOBAYASHI <shuhei@cmpt01.phys.tohoku.ac.jp>
* tl-822.el (rfc822/parse-ascii-token): do nil check for token
value (cf. [tm-ja:1671])
Thu Mar 14 16:27:21 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl-str.el: Function `truncate-string' was moved to emu-mule.el.
Alias `top-short-string' and `rightful-boundary-short-string' were
deleted.
* emu-mule.el (truncate-string): New function;
moved from tl-str.el.
* emu-nemacs.el (truncate-string): New function;
imported from emu-mule.el.
* emu-orig.el (truncate-string): New function.
Thu Mar 14 04:23:25 1996 Shuhei KOBAYASHI <shuhei@cmpt01.phys.tohoku.ac.jp>
* tl-str (truncate-string): New Implementation imported from Mule
2.3.
Wed Mar 13 17:16:09 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.18 was released.
* emu.el (functionp): New function.
* mu-cite.el (mu-cite/get-value): Use function `functionp'.
Wed Mar 13 16:35:15 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* mu-comment.el: New file.
Sat Mar 9 08:13:21 1996 Hiroshi Ueno <zodiac@ibm.net>
* mu-cite.el (mu-cite/cite-original): exchange-point-and-mark if
mark < point. (cf. [OS/2:1536])
Tue Mar 12 11:32:54 1996 Shuhei KOBAYASHI <shuhei@cmpt01.phys.tohoku.ac.jp>
* mu-bbdb.el (mu-cite/get-bbdb-prefix-register-method),
(mu-cite/get-bbdb-prefix-register-verbose-method): Don't register
null string. (cf.[tm-ja:1662])
* mu-cite.el (mu-cite/get-prefix-register-method),
(mu-cite/get-prefix-register-method): Don't register null string.
(cf.[tm-ja:1662])
* emu.el (buffer-substring-no-properties): New implementation
imported from Emacs 19.30. (cf.[tm-ja:1662])
Wed Mar 6 00:24:08 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.15 was released.
* mu-cite.el: MINOURA Makoto's E-mail address was
changed. (cf. [tm-ja:1649])
Wed Mar 6 00:07:55 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl-els: add mu-replace.el.
* mu-replace.el: New file.
Tue Mar 5 23:33:14 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl-str.el (replace-char-by-char): New function.
* tl-str.el (replace-space-with-underline): Function
`replace-space-with-underline' was moved from tm-edit.el.
* tl-list.el (cons-if): New function.
Mon Mar 4 14:31:31 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.14 was released.
Mon Mar 4 11:33:53 1996 KON-NO Yoichi <itokon@ssel.toshiba.co.jp>
* mu-cite.el (mu-cite/cite-original): `(mark)' might occur an
error. (cf. [tm-ja:1647])
Mon Mar 4 08:58:29 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl-els: New module
* mk-tl: use tl-els file.
Sat Mar 2 13:25:12 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/parse-ascii-token): New function.
(rfc822/parse-word, rfc822/parse-local-part,
rfc822/parse-sub-domain, rfc822/parse-domain,
rfc822/parse-at-domain, rfc822/parse-route,
rfc822/parse-route-addr, rfc822/parse-group,
rfc822/parse-addresses): Use function `rfc822/parse-ascii-token'
instead of `rfc822/parse-token'.
Wed Feb 28 13:26:26 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.13 was released.
Wed Feb 27 19:37:46 1996 Shuhei KOBAYASHI <shuhei@cmpt01.phys.tohoku.ac.jp>
* mk-tl: Add `mu-bbdb.el' to module list.
* mu-bbdb.el: New file.
* mu-cite.el: (mu-cite/get-field-value-method-alist),
(mu-cite/get-field-value): Typo fixed.
(mu-cite/get-citation-name): Changed to function.
(mu-cite/add-citation-name): New implementation.
(mu-cite/save-to-file): Add sore comments.
(mu-cite/get-prefix-register-method),
(mu-cite/get-prefix-register-verbose-method): Use 'x-attribution.
(mu-cite/default-methods-alist): Method `'x-attribution' was added.
(replace-top-string): New implementation.
Tue Feb 27 17:50:41 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* emu-nemacs.el (*noconv*): New constant.
(*sjis*): New constant.
(code-detect-region): New function.
(set-file-coding-system): New function.
* emu-orig.el (code-detect-region): New function.
(set-file-coding-system): New function.
* emu-orig.el (*noconv*): New constant.
Mon Feb 26 01:14:28 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.11.3 was released.
* emu-18.el (tl:set-text-properties): New function.
(tl:overlay-buffer): New function. (cf. [tm-ja:1606])
Mon Feb 26 01:05:28 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* emu-18.el (remove-hook): New function: Imported from Emacs
19.28. (cf. [tm-ja:1606])
* emu-18.el (defalias): Implementation was fixed.
(cf. [tm-ja:1606])
Mon Feb 26 00:56:18 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* emu.el: Version check was changed. (cf. [tm-ja:1606])
Mon Feb 26 00:54:12 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* emu.el: Version check was changed. (cf. [tm-ja:1606])
Sun Feb 25 18:08:24 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl-list.el (expand-range): New implementation.
* tl-list.el: Function `uncompress-range' was renamed to
`expand-range'.
* tl-list.el (member-of-range): New implementation.
Fri Feb 23 20:43:33 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl-list.el (last): changed to macro.
Fri Feb 23 20:36:19 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl-list.el (caar): New macro.
(cdar): New macro.
Sat Feb 23 17:52:54 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.11.2 was released.
Thu Feb 22 15:14:30 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl-str.el (eliminate-last-spaces): New function.
Thu Feb 22 14:33:08 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl-str.el (filename-special-char-range): New variable.
(filename-space-char-range): New variable.
(replace-as-filename): New implementation.
Thu Feb 22 14:24:39 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl-list.el (compress-sorted-numbers): New function imported from
Gnus.
(uncompress-range): New function imported from Gnus.
(member-of-range): New function imported from Gnus.
Wed Feb 14 13:00:02 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.11.1 was released.
Mon Feb 12 07:34:30 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl-misc.el (add-path): Document string was fixed.
Mon Feb 12 07:27:03 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl-misc.el (file-installed-p): new function
Sat Feb 2 17:08:20 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.11 was released.
Wed Jan 31 00:07:57 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* mu-cite.el (mu-cite/get-field-value-methoda-list): fixed problem
in mh-letter-mode
Thu Jan 25 08:07:39 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl-822.el: Don't use `equal' to compare strings.
Thu Jan 25 02:13:37 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.10 was released.
* emu-orig.el (*internal*, *ctext*): new constant
* emu-orig.el (code-convert-string): new function
* emu-orig.el (code-convert-region): new function
* emu-nemacs.el (*ctext*): new constant
* emu-18.el: Comment was fixed.
* emu-18.el (byte-code-function-p): check whether cons or not
Wed Jan 24 07:12:37 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* mu-cite.el (mu-cite/get-field-value-methoda-list): new variable
* mu-cite.el (mu-cite/get-field-value): new function
Sat Jan 20 13:25:43 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.09 was released.
Thu Jan 18 17:16:05 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* mu-cite.el: new method `in-id': default value of variable
`mu-cite/top-format' was changed to use it.
Thu Jan 18 14:48:33 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl-822.el (rfc822/non-qtext-char-list): new constant
* tl-822.el: Constant `rfc822/non-qtext-chars' was deleted.
* tl-822.el (rfc822/wrap-as-quoted-string): new function
* tl-str.el (char-list-to-string): new macro
* genjis.el: new module
Thu Jan 18 01:55:25 1996 Yoshiyuki Yamagami <yamagami@hb.nmcc.co.jp>
* Makefile: specify `-no-site-file' option (cf. [tm-ja:1474])
Wed Jan 17 08:23:41 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* tl: version 7.08 was released.
* mu-cite.el (mu-cite/get-prefix-register-verbose-method):
new implementation
* mu-cite.el (mu-cite/get-prefix-register-method):
new implementation
Wed Jan 17 06:57:16 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* mu-cite.el:
Function `mu-cite/get-ml-count' was renamed to
`mu-cite/get-ml-count-method'.
Function `mu-cite/citation-name' was renamed to
`mu-cite/get-prefix-register-verbose-method'.
Function `mu-cite/citation-name-quietly' was renamed to
`mu-cite/get-prefix-register-method'.
Wed Jan 17 06:49:53 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* mu-cite.el (mu-cite/get-prefix-method): new function: it is
implementation of new method `prefix'.
Wed Jan 17 06:30:08 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* mu-cite.el (mu-cite/save-to-file): modified to change comment of
output file
* mu-cite.el (mu-cite/RCS-ID, mu-cite/version): new variable
Wed Jan 17 06:22:35 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* mu-cite.el: Default name of user environment file was changed to
~/.mu-cite.el.
Wed Jan 17 06:08:19 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* mu-cite.el: `mu-register/*' were renamed to `mu-cite/*'.
* mu-cite.el: mu-register.el was merged into mu-cite.el.
Wed Jan 17 05:35:06 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* mu-register.el (mu-register/citation-name):
use function `y-or-n-p'
* mu-register.el (mu-register/citation-name-quietly):
use function `y-or-n-p'
Tue Jan 16 21:54:27 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* mu-register.el (mu-register/citation-name):
use function `tl:read-string' instead of `read-string'.
* mu-register.el (mu-register/citation-name-quietly):
use function `tl:read-string' instead of `read-string'.
* emu.el (tl:read-string): New function
* mu-register.el: `(require 'pp)' was deleted.
Tue Jan 16 14:04:24 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* mu-register.el:
Method `prefix-registered-quietly' was renamed to
`prefix-register'.
Method `prefix-registered' was renamed to
`prefix-register-verbose'.
Mon Jan 15 21:19:11 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* mu-register.el (mu-register/get-citation-name): new
implementation by macro
Mon Jan 15 21:07:05 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* mu-register.el (mu-register/citation-name-quietly): new
function: implementation of `prefix-registered-quietly'
Method name of function `mu-register/citation-name' was renamed to
`prefix-registered'.
Mon Jan 15 20:28:32 1996 Morioka Tomohiko <morioka@jaist.ac.jp>
* mu-register.el (mu-register/save-to-file): new implementation
* mu-register.el (mu-register/registration-symbol): new variable:
to specify symbol name of citation-name database.
* mu-register.el (mu-register/save-to-file): modified to use
variable `mu-register/registration-symbol'.
* mu-register.el: use function `set-alist'.
* mu-register.el: Comments were translated from Japanese to
English.
Wed Dec 27 14:28:17 1995 MINOURA Makoto <minoura@leo.bekkoame.or.jp>
* mu-register.el: new module
|