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
|
2004-01-17 Shun-ichi TAHARA <jado@flowernet.gr.jp>
* ndeb.el: support prev and next links.
2004-01-13 Shun-ichi TAHARA <jado@flowernet.gr.jp>
* lookup-types.el, ndeb.el: support inline image with XEmacs.
2003-10-29 Takashi NEMOTO <tnemoto@mvi.biglobe.ne.jp>
* lookup-select.el (lookup-select-display): fix typo
2002-11-20 Satomi <satomi@ring.gr.jp>
* ndeb-binary.el: remove extra newlines and quotes.
* ndeb-binary.el (ndeb-binary-extract-link): expand the output
filename using buffer's default-directory.
* ndeb-binary.el (ndeb-binary-insert-color-image): use
condition-case instead of ignore-errors.
2002-11-20 Satomi <satomi@ring.gr.jp>
* lookup-types.el: Prevent images from beign erased on XEmacs
when the content buffer is redisplayed from the cache.
(lookup-glyph-insert): Use text property instead of extent.
(lookup-img-file-insert): Use glyph if the image type is given.
(lookup-bitmap-compose): Return all lines for the given xbm,
not only the first line.
* ndeb-binary.el:
(ndeb-binary-glyph-compose-function): New variable.
(ndeb-binary-glyph-insert-function): New variable.
(ndeb-image-mono-face): Always define.
(ndeb-binary-initialize): New function.
(ndeb-binary-make-keymap): Removed. Use ndeb-binary-initialize
instead.
(ndeb-binary-insert-mono-image): Set face on XEmacs and
bitmap-mule environment as well.
2002-11-17 Satomi <satomi@ring.gr.jp>
* ndeb-binary.el (ndeb-image-mono-face): New face (xbm-aware FSF
Emacs only).
* ndeb-binary.el (ndeb-binary-insert-mono-image): Set face on
the inserted image when XBM is natively supported (xbm-aware FSF
Emacs only).
(ndeb-binary-insert-mono-image, ndeb-binary-insert-color-image):
Insert \n after the image unless one already exists.
2002-11-17 Satomi <satomi@ring.gr.jp>
* ndeb-binary.el (ndeb-binary-expand-file-name): Use
directory-sep-char instead of replacing the directory
separators manually.
2002-11-16 Satomi <satomi@ring.gr.jp>
* ndeb-binary.el (ndeb-image-caption-face,
ndeb-image-reference-face): ([lookup 2188]) Change the default
foreground color.
2002-11-15 Satomi <satomi@ring.gr.jp>
* lookup-types.el: Support BMP image. However, a critical
problem exist that Emacs may enter an infinit loop when the
bitmap is compressed. Some workaround may be required.
(lookup-img-decode-bmp): New function.
(lookup-img-file-insert): Add image/bmp entry to format-alist.
* ndeb.el (:arranges): ([lookup 2208]) Relocate
ndeb-arrange-gaijis so that it is called after
ndeb-arrange-references.
(ndeb-arrange-fill-lines): ([lookup 2184]) Avoid empty lines
being inserted on XEmacs.
* ndeb-binary.el: Remove unused variables.
(ndeb-binary-expand-file-name): New function, which converts
"\\" characters in the expanded path to "/". Use this to make
filename that will be passed to eblook.
(ndeb-arrange-bmp): Try `tiff' before `bmp' to avoid the infinit
loop problem described above.
2002-10-22 Satomi <satomi@ring.gr.jp>
* lookup.el (lookup-hide-buffer): Call bury-buffer only if the
buffer exists.
* lookup-util.el (lookup-table-insert): Manually format %t
fields to properly align columns on XEmacs ([lookup 2132]).
(lookup-process-kill): Add error handling.
2002-10-21 Satomi <satomi@ring.gr.jp>
* ndeb-binary.el (ndeb-binary-set-link): Use keymap property on
Emacs 21 or later, instead of local-map.
2002-10-21 Satomi <satomi@ring.gr.jp>
* lookup-types.el (lookup-inline-image-p): Use
image-instantiator-format-list on XEmacs to check if the given
type is supported on the system.
2002-10-18 Satomi <satomi@ring.gr.jp>
* lookup-content.el (lookup-content-mode-map): Bind <TAB> to
lookup-content-next-tab-stop, <S-TAB> to
lookup-content-previous-tab-stop.
(lookup-content-help-echo): New function.
(lookup-next-tab-stop): New function.
(lookup-previous-tab-stop): New function.
* lookup-types.el (lookup-set-link): Add lookup-tab-stop property.
(lookup-next-tab-stop): New function.
(lookup-next-tab-stop): New function.
(lookup-img-file-insert): Bug fix.
* ndeb.el: Require ndeb-binary.
(ndeb-clear): New function; was alias.
(ndeb :arranges): Arrange gaijis first.
(ndeb :xbm-regexp): Removed; now implemented in ndeb-binary.el.
(ndeb :bmp-regexp): Ditto.
(ndeb :jpeg-regexp): Ditto.
(ndeb-arrange-xbm): Ditto.
(ndeb-arrange-bmp): Ditto.
(ndeb-arrange-jpeg): Ditto.
* ndeb-binary.el: New file to support binary files on ndeb.
2002-10-04 yamagata@nwgpc.kek.jp
* ndtp.el: ([lookup 1985]) Bug fixed.
(ndtp-require-select): Some dictionary have no gaiji image
whereas the catalogue says it has.
* ndeb.el: ([edict 2130]) Bug fixed.
(ndeb-dictionary-content): decorate-mode should be turned on
only for content fetching.
2002-10-02 Satomi <satomi@ring.gr.jp>
* lookup-types.el: Support Emacsen prior to 21 and 21 for Windows.
(lookup-img-file-insert): Add optional 2nd parameter TYPE to
specify the image type.
(lookup-inline-image-p): Add parameter TYPE, which should be the
image type to test.
* lookup-vars.el.in: Use bitmap-mule to display gaiji if Emacs does
not have xbm support.
(lookup-init-gaiji-functions): Give priority to lookup-use-bitmap.
* lookup.el: Display splash screen via bitmap-mule if Emacs does
not support inline images.
* ndeb.el: Support Emacsen prior to 21 and 21 for Windows.
(ndeb-arrange-xbm): Try to use bitmap-mule if Emacs does not have
xbm support.
(ndeb-arrange-bmp): Try to use bmp if tiff is not supported.
(ndeb-arrange-jpeg): Add error handling.
2002-09-29 NEMOTO Takashi <tnemoto@mvi.biglobe.ne.jp>
* ndeb.el: Temporary ignore <sup><sub><em> tags.
2002-09-28 YAMAGATA <yamagata@nwgpc.kek.jp>
* ndeb.el: Support <no-newline>.
(ndeb-arrange-no-newline): New function.
(ndeb-arrange-fill-lines): Ditto.
2001-12-19 Kazuhiko <kazuhiko@ring.gr.jp>
* ndeb.el (ndeb-arrange-xbm): Try to display images only when
'lookup-inline-image-p' returns non-nil.
(ndeb-arrange-bmp): Ditto.
(ndeb-arrange-jpeg): Ditto.
* lookup-types.el (lookup-inline-image-p): New function.
2001-12-16 YAMAGATA <yamagata@nwgpc.kek.jp>
* ndeb.el (ndeb-arrange-bmp): Add an error handling code.
(ndeb-arrange-jpeg): Ditto.
2001-12-08 Kazuhiko <kazuhiko@ring.gr.jp>
* lookup-select.el (lookup-select-menu): New function.
(lookup-select-mode-map): Define key.
* lookup-entry.el (lookup-entry-menu): New function.
(lookup-entry-mode-map): Define key.
* lookup-entry.el (lookup-entry-show-menu): Ditto.
* lookup-vse.el (lookup-vse-get-copyright): New function.
2001-12-06 YAMAGATA <yamagata@nwgpc.kek.jp>
* ndeb.el (ndeb-dictionary-menu): Display whole contents of menu.
(ndeb-dictionary-content): Ditto.
2001-12-01 Kazuhiko <kazuhiko@ring.gr.jp>
* lookup-types.el (lookup-img-file-insert): New function.
* lookup-vars.el.in (lookup-use-bitmap): Set to nil by default if
internal image suport is active.
(lookup-inline-image): Define in this file as a custom variable.
* lookup-types.el (temporary-file-directory): Define for emacsen
that lacks difinition of it.
* lookup.el (lookup-splash): Display XPM logo on emacs-21.
* ndeb.el (ndeb:arranges): Arrange images at first.
2001-11-30 Takashi Nemoto
* ndeb.el : remove extra line feed after BMP image
2001-11-30 Kazuhiko <kazuhiko@ring.gr.jp>
* ndeb.el (ndeb-max-image-size): New variable.
(ndeb-arrange-bmp): Use 'insert-file-contents-internal' instead of
insert-file.
(ndeb-arrange-jpeg): Call 'create-image' with not a file but a data.
(ndeb-arrange-bmp): Ditto.
2001-11-29 Kazuhiko <kazuhiko@ring.gr.jp>
* ndeb.el (ndeb-arrange-xbm): New function.
(ndeb-arrange-bmp): Ditto.
(ndeb-arrange-jpeg): Ditto.
(ndeb-program-arguments): New variable for eblook 1.5 or later.
(ndeb-process-open): Add 'ndeb-program-arguments'.
* lookup-vse.el (lookup-inline-image): New variable.
* lookup-vars.el.in (lookup-init-gaiji-functions): Support
emacs-21 internal image function.
* lookup-types.el: Ditto.
(lookup-glyph-insert): New function.
2000-02-12 Keisuke Nishida <kxn30@po.cwru.edu>
* Release 1.2.
2000-02-09 Keisuke Nishida <kxn30@po.cwru.edu>
* Release 1.1.1.
* ndeb.el (ndeb-process-open): Error if the directory is invalid.
2000-01-05 TSUCHIYA Masatoshi <tsuchiya@pine.kuee.kyoto-u.ac.jp>
* lookup-entry.el (lookup-insert-entry, lookup-insert-entry-format):
New variable to control entry buffer style is defined.
1999-12-24 Keisuke Nishida <kxn30@po.cwru.edu>
* lookup-content.el (lookup-content-cite-region): Call
zmacs-deactivate-region on XEmacs.
1999-12-14 Keisuke Nishida <kxn30@po.cwru.edu>
* Makefile.am (MAINTAINERCLEANFILES): Remove generated files.
1999-11-30 Kazuhiro Ito <m1877334@msic.med.osaka-cu.ac.jp>
* ndeb.el: Remove changes on 1999-11-25
* ndtp.el: Remove changes on 1999-11-25
contents.
1999-11-25 Kazuhiro Ito <m1877334@msic.med.osaka-cu.ac.jp>
* ndeb.el (ndeb-dictionary-search): Don't suppress duplicated hit
contents.
* ndtp.el (ndtp-dictionary-search): Don't suppress duplicated hit
contents.
1999-10-20 Keisuke Nishida <kxn30@po.cwru.edu>
* lookup-utils.el (lookup-process-kill): Set process-filter to nil
before deleting the process.
1999-09-20 Masatoshi Tsuchiya <tsuchiya@olive>
* ndnmz.el (ndnmz-generate-temp-buffer): Small fix.
1999-09-10 Masatoshi Tsuchiya <tsuchiya@pine.kuee.kyoto-u.ac.jp>
* evi.el (string-to-char-list): Small modification for Mule-2.3
based on Emacs-19.28.
1999-09-09 Yoshimi Kuruma <yoshimik@iris.dti.ne.jp>
* ndsrd.el: Bug Fixed.
1999-09-07 Masatoshi Tsuchiya <tsuchiya@pine.kuee.kyoto-u.ac.jp>
* sdicf.el: Substituent `sdicf-buffer-live-p' for `buffer-live-p'.
1999-09-02 Keisuke Nishida <kxn30@po.cwru.edu>
* ndtp.el (ndtp-dictionary-search, ndtp-require-select): Fixed for
the output "$<".
1999-08-17 Masatoshi Tsuchiya <tsuchiya@pine.kuee.kyoto-u.ac.jp>
* evi.el (string-to-char-list): Add definition for Emacs20.
1999-08-09 Masatoshi Tsuchiya <tsuchiya@pine.kuee.kyoto-u.ac.jp>
* lookup.el (lookup-setup, lookup-start-session, lookup-dictinoary-alist):
Modify to update the value of `lookup-dictionary-alist' everywhen
`lookup-module-setup' is called.
1999-07-28 Masatoshi Tsuchiya <tsuchiya@pine.kuee.kyoto-u.ac.jp>
* lookup-kanji.el: Some fixes to kill buffer and process when
calling `lookup-exit'.
1999-07-28 Satoru Takabayashi <satoru-t@is.aist-nara.ac.jp>
* Makefile.am: Add lookup-kanji.el to SOURCES.
* ndsrd.el: Change a default dictionary name.
1999-07-28 Masatoshi Tsuchiya <tsuchiya@pine.kuee.kyoto-u.ac.jp>
* ndnmz.el: New implementation.
* lookup-utils.el (lookup-with-coding-system): Fix for XEmacs.
1999-07-27 Masatoshi Tsuchiya <tsuchiya@pine.kuee.kyoto-u.ac.jp>
* ndspell.el: Delete definition of `lookup-split-string'.
* lookup-utils.el: Add definition of `lookup-split-string'.
* lookup-kanji.el: Substituent `lookup-split-string' for `split-string'.
1999-07-27 Masatoshi Tsuchiya <tsuchiya@pine.kuee.kyoto-u.ac.jp>
* lookup.el,lookup-vse.el,lookup-types.el: New options of
dictionary, `:expander', `:expand-filter', and `:hiragana' are
defined.
* lookup-kanji.el: New File.
* stem-english.el: Some fixes.
1999-06-29 Kazuyoshi KOREEDA <k_koreed@d2.dion.ne.jp>
* lookup-compile.el Fix a problem on XEmacs 21.2.
1999-06-02 Keisuke Nishida <kei@psn.net>
* lookup-entry.el (lookup-entry-show-menu): New command.
(lookup-entry-mode-map): New keybind `M' for the above.
1999-05-24 Yoshimi KURUMA <yoshimik@iris.dti.ne.jp>
* evi.el (split-string): Moved to ndspell.el with renaming.
* ndspell.el (lookup-split-string): Moved from evi.el with renaming.
1999-05-20 Keisuke Nishida <kei@psn.net>
* lookup-select.el (lookup-select-mode-map): Add key binding `o'.
* lookup-content.el (lookup-content-mode-map): Add key binding `f'.
* lookup-entry.el (lookup-entry-display): Set line-pattern properly.
(lookup-entry-previous-entry): Do properly even if ARG is nil.
(lookup-entry-previous-page): Go last entry from the end of a buffer.
1999-05-13 Kazuhiro Ito <m1877334@msic.med.osaka-cu.ac.jp>
* lookup-types.el (lookup-dictionary-default-method):
Never returns nil.
* lookup.el (lookup-search-query):Don't check
lookup-dictionary-default-method's return value.
1999-05-12 Satoru Takabayashi <satoru-t@is.aist-nara.ac.jp>
* sdicf.el: Fix some bugs and speed up
(commit by proxy for <tsuchiya@pine.kuee.kyoto-u.ac.jp>)
1999-05-02 Satoru Takabayashi <satoru-t@is.aist-nara.ac.jp>
* lookup-vse.el (lookup-arrange-squeezed-references): modify
search-forward-regexp to remove a garbage string "<gaiji:z0001>"
1999-05-02 KURUMA Yoshimi <yoshimik@iris.dti.ne.jp>
* lookup.el (lookup-search-pattern): The length of PATTERN is
changed to 80 (befere 40).
* ndict.el (ndict-dictionary-search): Neglect Non Ascii Character
in searching.
1999-04-25 Kazuhiro Ito <m1877334@msic.med.osaka-cu.ac.jp>
* lookup-vse.el (lookup-arrange-squeezed-references): New function.
* ndeb.el: Add lookup-arrange-squeezed-references in default arranges.
Enable new dictionary option `:squeezed'.
* ndtp.el: Add lookup-arrange-squeezed-references in default arranges.
Enable new dictionary option `:squeezed'.
1999-04-08 Kazuhiro Ito <m1877334@msic.med.osaka-cu.ac.jp>
* lookup-entry.el (lookup-entry-excursion):
Call lookup-entry-current-line-entry from entry buffer.
1999-03-13 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup.el (lookup-module-forward): Set default-module always.
* lookup-types.el (lookup-gaiji-glyph-possible-p): Check window-system.
* ndnmz.el: Removed.
1999-03-05 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-entry.el (lookup-entry-line-method): Removed.
(lookup-entry-display): Remove setting of `lookup-entry-line-method'.
Set `lookup-entry-line-pattern' to `lookup-search-pattern'.
(lookup-entry-mode): Remove `lookup-entry-line-method'.
1999-03-02 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndtp.el (ndtp-with-dictionary): Fixed.
(Thanks to Takeshi Hagiwara!)
1999-02-20 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-types.el (lookup-glyph-compose, lookup-glyph-paste,
lookup-bitmap-compose, lookup-bitmap-paste): Moved from lookup-defs.el.
* lookup-defs.el: Removed.
* lookup.el (lookup-module-forward, lookup-module-backward): Rewriten.
Take an optional argument.
(lookup-search-query): Fixed around stemming.
* lookup-vars.el.in (lookup-heading-low-face): Change foreground
"Grey". Previous "SlateGrey" isn't defined in Mule for Win.
(lookup-init-gaiji-functions): Set paste-function by default.
1999-02-18 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-types.el (lookup-history-ref): Return a symbol not error.
Ding instead of occuring an error.
* lookup-select.el: Renamed from `lookup-misc.el'.
* ndeb.el (ndeb-process-open): Set buffer name with directory.
* ndtp.el (ndtp-process-open): Set buffer name with server name.
* lookup.el (lookup-initialize): Just only loading init file.
(lookup-agent-list, lookup-agent-alist, lookup-module-list,
lookup-module-alist, lookup-dictionary-alist, lookup-default-module):
New functions.
(lookup-input-module, lookup-module-forward, lookup-module-backward,
lookup-get-module, lookup-get-agent, lookup-get-dictionary,
lookup, lookup-setup): Updated.
(lookup-exit): Set variables nil.
* lookup-types.el (lookup-new-module): Updated.
* lookup-content.el (lookup-content-cite-region): Deactivate mark
in Transient Mark mode. Show message like `kill-ring-save'.
* lookup-entry.el (lookup-entry-cite-content): Call
`lookup-content-cite-region' internally.
1999-02-17 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-vars.el.in (lookup-process-coding-system,
lookup-kakasi-coding-system): New variables.
* lookup-utils.el (lookup-with-coding-system): New macro.
(lookup-current-word-japanese): Set coding system for KAKASI.
* ndic.el: Set options directly.
(ndic-reference-pattern, ndic-default-arrange-functions,
ndic-default-adjust-functions): Removed.
* ndeb.el: Set options directly.
(ndeb-search-methods, ndeb-gaiji-regexp, ndeb-reference-pattern,
ndeb-default-heading-functions, ndeb-default-arrange-functions,
ndeb-default-adjust-functions): Removed.
(ndeb-process-coding-system): New variable.
(ndeb-agent-coding): Updated.
(ndeb-dictionary-coding): New function.
(ndeb-with-dictionary): Set dictionary coding-system.
* ndtp.el: Set options directly.
(ndtp-search-methods, ndtp-gaiji-regexp, ndtp-reference-pattern,
ndtp-default-heading-functions, ndtp-default-arrange-functions,
ndtp-default-adjust-functions): Removed.
(ndtp-service-name, ndtp-account-name): Removed.
(ndtp-agent-service, ndtp-agent-account): Set default directly.
(ndtp-process-coding-system): Set a symbol not cons.
(ndtp-agent-coding): Updated.
(ndtp-dictionary-coding): New function.
(ndtp-with-dictionary): Set dictionary coding-system.
(ndtp-require-select): Always enable gaijis if possible.
* ndict.el: Set options directly.
(ndict-reference-pattern, ndict-default-arrange-functions,
ndict-default-adjust-functions): Removed.
(ndict-service-name): Removed.
(ndict-agent-service): Set default directly.
(ndict-process-coding-system): Set a symbol not cons.
(ndict-agent-process): Updated.
* ndnmz.el: Set options directly.
(ndnmz-search-methods, ndnmz-default-arrange-functions,
ndnmz-default-adjust-functions): Removed.
(ndnmz-process-coding-system): New vairable.
(ndnmz-dictionary-search): Set coding-system.
* ndkks.el: Set options directly.
(ndkks-search-methods, ndkks-default-arrange-functions,
ndkks-default-adjust-functions): Removed.
(ndkks-process-coding-system): New vairable.
(ndkks-get-process): Set coding-system.
* ndspell.el: Set options directly.
(ndspell-search-methods): Removed.
(ndspell-process-coding-system): New variable.
(ndspell-get-process): Set coding-system.
* ndcookie.el (ndcookie-setup): Don't initialize.
* ndmisc.el: Set options directly.
(ndmisc-default-arrange-functions, ndmisc-default-adjust-functions):
Removed.
1999-02-16 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-defs.el (lookup-glyph-insert): Removed.
(lookup-glyph-paste, lookup-bitmap-paste): New functions.
(lookup-bitmap-compose): Require bitmap.
* lookup-vars.el.in (lookup-gaiji-insert-function): Removed.
(lookup-gaiji-paste-function): New variable.
(lookup-init-gaiji-functions): Updated.
(lookup-cite-style, lookup-gaiji-style): Removed.
(lookup-gaiji-alternate): New variable.
* lookup-types.el (lookup-gaiji-glyph-insert): Removed.
(lookup-gaiji-glyph-paste): New function.
(lookup-gaiji-insert): Updated.
(lookup-new-gaiji-table): Set alternate to glyph by default.
* lookup-vse.el (lookup-vse-get-gaiji): Rewriten. Remove 3rd arg
HEIGHT of gaiji command.
(lookup-adjust-show-gaijis): New function.
* ndeb.el (ndeb-dictionary-gaiji): Updated.
(ndeb-default-adjust-functions): Add `lookup-adjust-show-gaijis'.
* ndtp.el (ndtp-dictionary-gaiji): Updated.
(ndtp-default-adjust-functions): Add `lookup-adjust-show-gaijis'.
* lookup-types.el (lookup-word-search-methods): New method `stemming'.
(lookup-method-key-alist): Add key for `stemming'.
(lookup-dictionary-stemmer): New function.
(lookup-dictionary-init): Add `stemming' to dictionary-methods.
* lookup-vse.el (lookup-vse-search-query-internal): Rewriten.
* lookup-types.el (lookup-copy-entry): `lookup-entry-copy'.
* lookup.el (lookup-search-query): Updated.
* lookup-types.el (dictionary): Take new argument `title'.
(lookup-new-dictionary): New function. Updated all agent files.
* lookup-types.el (lookup-agent-set-default): Use `plist-put'.
(lookup-agent-option): Use `plist-get' for defaults.
(lookup-dictionary-set-default): Use `plist-put'.
(lookup-dictionary-option): Use `plist-get' for defaults.
* lookup-types.el (dictionary): Remove the property `default-method'.
(lookup-dictionary-init): Remove setting of `default-method'.
(lookup-dictionary-default-method): New function.
* lookup-utils.el (lookup-multi-put, lookup-multi-get): Set symbol
by value not by plist.
* lookup-vse.el (lookup-entries-cache): New variable.
(lookup-entries-cache-clear): New function.
(lookup-contents-cache): New variable.
(lookup-contents-cache-clear): New function.
* lookup.el (lookup-exit): Clear caches.
* lookup-vse.el (lookup-fix-current-column): Removed.
(lookup-current-column): Removed
(lookup-arrange-fill-lines): Remove the incomplete fix for Mule bug.
1999-02-15 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Rewrite the definition of modules.
* lookup-vars.el.in (lookup-agent-list, lookup-agent-alist,
lookup-module-list, lookup-module-alist, lookup-dictionary-alist,
lookup-search-modules): New variable.
* lookup.el (lookup-initialize): Set aboves.
(lookup-get-module, lookup-get-agent, lookup-get-dictionary):
New functions.
* lookup-types.el (lookup-module-get-agent): Removed.
(lookup-module-get-dictionary): Removed.
* lookup-types.el (lookup-agent-init): Just only set properties.
(lookup-agent-setup): New function devided from `lookup-agent-init'.
* lookup-types.el (lookup-agent-clear): Change the clear command
name to `clear'. All agents files are updated.
* ndic.el (ndic-clear): Renemed from `ndic-exit'.
* ndeb.el (ndeb-clear): Renamed from `ndeb-exit'.
* ndtp.el (ndtp-clear): Renemed from `ndtp-exit'.
* ndict.el (ndict-clear): Renemed from `ndict-exit'.
* ndnmz.el (ndnmz-clear): Renemed from `ndnmz-exit'.
* ndkks.el (ndkks-clear): Renemed from `ndkks-exit'.
* ndspell.el (ndspell-clear): Renemed from `ndspell-exit'.
* ndcookie.el (ndcookie-clear): Renamed from `ndcookie-exit'.
* lookup-types.el (module): Redefine.
(lookup-new-module, lookup-module-init): Rewriten.
(lookup-module-setup): New function.
(lookup-module-initialized-p): Removed.
* lookup.el (lookup-exit, lookup-start-session): Updated.
1999-02-13 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-types.el (lookup-dictionary-init): Fixed to set
gaiji-table by default.
1999-02-13 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* evi.el (char-charset): Removed. This may be defined in APEL.
* lookup-utils.el (lookup-current-word): Redefine.
1999-02-11 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-vars.el.in (lookup-byte-compile): New variable.
* lookup-compile.el: Set `lookup-byte-compile' t before compiling.
* lookup.el: Initialize at the end of file exept in time of compiling.
1999-02-10 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* evi.el (char-charset): Define using `char-leading-char' on Mule.
* lookup-utils.el (lookup-current-word): Updated.
(lookup-current-word-japanese): Updated.
* lookup.el (lookup-exit): Take a prefix argument.
* sdicf.el: New file.
1999-02-08 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup.el (lookup-exit): Not set `lookup-module-alist' nil.
* ndeb.el (ndeb-agent-directory, ndeb-agent-appendix): Expand filename.
1999-02-06 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-entry.el (lookup-entry-update): Fixed to set session module.
1999-02-05 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-vse.el (lookup-arrange-references, lookup-vse-get-menu):
Fixed to arrange heading.
(lookup-vse-search-query-internal): Fixed duplication of stemming.
* lookup.el (lookup-module-forward): New command.
* lookup-entry.el (lookup-entry-mode-map): Bind aboves.
1999-02-04 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndeb.el (ndeb-process-coding-system): Removed.
* ndspell.el (ndspell-dynamic-search): Use `lookup-current-session'.
* lookup-vse.el (lookup-vse-search-query-internal): Abolish filtering.
(lookup-vse-get-gaiji): Fixed not to error for invalid gaiji code.
* Change the style of `lookup-search-agents' and options' key.
Many files ware updated.
* lookup-types.el (agent): Don't take ARGS.
(lookup-new-agent, lookup-agent-option): Updated.
* Abolish suspending agent.
* lookup-types.el (lookup-agent-suspend): Removed.
* lookup.el (lookup-suspend): Updated.
* ndtp.el (ndtp-suspend, ndtp-agent-suspend-p): Removed.
* lookup-misc.el (lookup-select-goto-first): New function.
(lookup-select-display, lookup-select-do-select-all,
lookup-select-do-select-only, lookup-select-do-execute): Use above.
1999-02-03 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Rewrite around the concept `session'.
* lookup-vars.el.in (lookup-current-module): Removed.
(lookup-current-session, lookup-last-session): New variables.
* lookup-types.el (lookup-with-module): Removed.
* lookup.el (lookup, lookup-suspend, lookup-exit): Updated.
(lookup-search-pattern): Take two argument.
(lookup-pattern): Updated.
(lookup-start-session): New macro.
(lookup-open-session): New function.
* lookup-types.el (lookup-session-append-entries): Removed.
(lookup-session-ref, lookup-session-display,
lookup-session-save-excursion): New functions.
* lookup-entry.el (lookup-entry-append): Take two arguments.
* lookup.el: New session `lookup-select-session'.
(lookup-select-dictionary): New function.
* lookup-misc.el (lookup-select-display): Renamed from
`lookup-select-dictionary' and update for select session.
(lookup-select-do-execute, lookup-select-update,
lookup-select-point-dictionary): Updated.
(lookup-select-point-dictionary): Renamed from
`lookup-select-current-line-dictionary'. Many functions ware updated.
* lookup.el: New session `lookup-search-session'.
(lookup-search-query): Rewriten.
(lookup-display-entries): New function replacing `lookup-open-session'.
* lookup-content.el (lookup-content-follow-link): Use above.
* lookup-entry.el (lookup-entry-list-references): Ditto.
* lookup-misc.el (lookup-select-menu,lookup-select-text-search): Ditto.
(lookup-select-search-pattern): Updated.
* lookup-entry.el (lookup-entry-current-session): Removed.
(lookup-entry-display): Updated.
* lookup-entry.el (lookup-entry-search-pattern, lookup-entry-update,
lookup-entry-expand-reference): Updated.
(lookup-entry-select-dictionary): New command.
* lookup-types.el (lookup-history-ref): Make second argument `n'
optional. Error directly for an invalid move.
(lookup-history-clear): New function.
(lookup-new-module): Make history this time.
(lookup-module-clear): Clear history.
* lookup.el (lookup): Display session in the history.
(lookup-history-next, lookup-history-previous): New commands.
* lookup-entry.el (lookup-entry-history-next,
lookup-entry-history-previous): Removed.
(lookup-entry-mode-map): Bind aboves.
* lookup-misc.el (lookup-select-mode-map): Bind aboves.
* lookup-vars.el.in (lookup-window-buffers): Removed.
* lookup.el (lookup-quit): Removed. Use `lookup-suspend' instead.
(lookup-suspend, lookup-pop-to-buffer): Updated.
1999-01-29 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-types.el (lookup-new-agent): Don't take title and init.
* lookup-vars.el.in (lookup-search-module): Delete variable.
(lookup-module-alist, lookup-default-module): New variables.
* lookup.el (lookup-initialize): Set aboves.
(lookup-input-module-history): New variable.
(lookup-input-module, lookup-input-module-arg): New functions.
(lookup): Take new arg `module'.
(lookup-pattern-input, lookup-word-input, lookup-region-input):
New functions.
(lookup-pattern, lookup-pattern-full-screen, lookup-pattern-other-frame,
lookup-word, lookup-word-full-screen, lookup-word-other-frame,
lookup-region, lookup-region-full-screen, lookup-region-other-frame):
Take new arg `module'.
(lookup-setup, lookup-exit): Use `lookup-module-alist'.
* lookup.el (lookup-entry-buffer, lookup-content-buffer,
lookup-select-buffer): Add a space(` ') beginning of the buffer name.
* lookup-entry.el (lookup-entry-mode): Remove a space before "%b"
of the mode line string.
* lookup-content.el (lookup-content-mode): Ditto.
* lookup-select.el (lookup-select-mode): Ditto.
* ndcookie.el (ndcookie-setup, ndcookie-dictionary-search):
Return a cookie at random.
1999-01-28 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 1.0pre9 released.
1999-01-27 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup.el (lookup-set-agent-option, lookup-set-dictionary-option):
Moved from lookup-packages.el.
* lookup-vars.el.in (lookup-search-method): Set `nil'.
* lookup.el (lookup-search-pattern): Use `lookup-search-method'.
* lookup-types.el (lookup-parse-pattern): Updated.
* lookup.el (lookup-search-query): Errer with the input method.
(lookup-search-pattern): Check the search pattern first.
* lookup-types.el (lookup-parse-pattern): Don't make one-line.
* lookup-vars.el.in (lookup-reading-face): Removed.
(lookup-open-function): Make variable non-customizable.
(lookup-cite-style, lookup-cite-header, lookup-cite-prefix,
lookup-window-height): Fixed customization group.
1999-01-25 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndcookie.el (ndcookie-setup): Not use the agent title.
* ndtp.el (ndtp-process-coding-system, ndtp-service-name,
ndtp-account-name): Make constant.
* ndict.el (ndict-service-name, ndict-process-coding-system):
Make constant.
* ndnmz.el (ndnmz-process-coding-system): Removed.
* ndkks.el: Remove the setting of process coding system.
* ndspell.el (ndspell-process-coding-system): Removed.
* lookup.el (lookup-initialize): Not set coding system for KAKASI.
* ndkks.el: Not set coding system for KAKASI.
(ndkks-valid-charsets): Make constant.
1999-01-24 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-entry.el (lookup-entry-search-selection): Removed.
* lookup.el (lookup-secondary): Renamed from `lookup-selection'.
(lookup-secondary-full-screen): Renamed from `lookup-selection-full-screen'.
(lookup-secondary-other-frame): Renamed from `lookup-selection-other-frame'.
(lookup-selection): New command replaced with `lookup-entry-search-selection'.
(lookup-selection-full-screen, lookup-selection-other-frame):
New commands.
* lookup.el (lookup-full-screen): Renamed from `lookup-full-window'.
(lookup-pattern-full-screen): Replaced with `lookup-pattern-full-window'.
(lookup-word-full-screen): Replaced with `lookup-word-full-window'.
(lookup-region-full-screen): Replaced with `lookup-region-full-window'.
(lookup-selection-full-screen): Replaced with `lookup-selection-full-window'.
* lookup-misc.el (lookup-select-next-line): Ding if end of buffer.
(lookup-select-previous-line): Ding if beginning of buffer.
(lookup-select-info): Remove command.
* evi-mule.el (evi-coding-system): Don't use `lookup-assq-ref'.
1999-01-21 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup.el (lookup-vse-get-menu): Set autoload.
* lookup-vars.el.in (lookup-gaiji-style): Renamed from
`lookup-gaiji-policy'.
(lookup-cite-style): Renamed from `lookup-cite-policy'.
* lookup-types.el (lookup-gaiji-insert): Updated.
* lookup-entry.el (lookup-entry-cite-content): Updated.
* evi.el (defface): Rewrite to be worked on Mule.
1999-01-19 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-vars.el.in (lookup-default-method): Set the value to `exact'.
* ndeb.el (ndeb-search-methods):
* lookup-types.el (lookup-search-methods, lookup-method-key-alist):
Add new search method `default'.
(lookup-parse-pattern): Use `default'.
(dictionary): Add new property `default-method'.
(lookup-dictionary-init): Save the value of option `default-method'.
* lookup.el (lookup-search-query): Use `default'.
* ndtp.el (ndtp-gaiji-regexp): Simplify a little.
(ndtp-reference-pattern): Rewrite the pattern.
* ndeb.el (ndeb-gaiji-regexp, ndeb-reference-pattern): Simplify.
1999-01-18 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* evi-mule.el (evi-coding-system-table): Fixed the code name for
euc-jp-dos.
* lookup-content.el (lookup-content-cite-region): New command.
* lookup-entry.el (lookup-entry-cite-content): Renamed from
`lookup-entry-kill-ring-save-content'. Enable new dictionary
option `cite-policy'.
* ndtp.el (ndtp-require-select): Fixed the separate pattern for `XI'.
(ndtp-dictionary-search): Fixed the separate pattern for `P'.
1999-01-17 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 1.0pre8 released.
* lookup-vars.el.in (lookup-mouse-search-command): Delete variable.
* lookup.el (lookup-selection): Call `lookup-word' directly.
* lookup.el (lookup-pattern, lookup-pattern-other-frame, lookup-word,
lookup-word-other-frame, lookup-region, lookup-region-other-frame,
lookup-selection, ookup-selection-other-frame): Remove prefix argument.
(lookup-pattern-other-window, lookup-word-other-window,
lookup-region-other-window, lookup-selection-other-window): Delete
commands.
(lookup-pattern-full-window, lookup-word-full-window,
lookup-region-full-window, lookup-selection-full-window): New commands.
* lookup-vars.el.in (lookup-faces): New customization group.
* lookup.el (lookup-pop-to-buffer): Check `frame-visible-p' boundary.
* stem-english.el: Update again to v.1.8.
1999-01-15 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-vse.el (lookup-fix-current-column): New constants.
(lookup-current-column): New function.
(lookup-arrange-fill-lines): Rebind `current-column' temporary.
1999-01-14 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup.el (lookup-initialize): Run `lookup-load-hook' just after
loading ~/.lookup.
* ndspell.el (ndspell-dictionary-search): Do search when
`lookup-force-update' is non-nil.
* lookup-types.el (lookup-new-agent): Take options as conses directly.
* stem-english.el: Update again to v.1.6.
1999-01-12 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-vars.el.in (lookup-cite-policy): New customizable valiable.
(lookup-gaiji-policy): New variable.
* lookup-types.el (lookup-gaiji-insert): Use `lookup-gaiji-policy'.
* lookup-entry.el (lookup-entry-default-policies): New constant.
(lookup-entry-kill-ring-save-content): Use `lookup-cite-policy'.
* lookup.el (lookup-debug): New command.
* stem-english.el: New file replaced with stem.el.
* Makefile.am (SOURCES): Include stem-english.el.
1999-01-11 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndtp.el (ndtp-reference-pattern): More practically.
* ndic.el (ndic-reference-pattern, ndic-default-arrange-functions,
ndic-default-adjust-functions): Make variables not customizable.
* ndeb.el (ndeb-reference-pattern, ndeb-default-heading-functions,
ndeb-default-arrange-functions, ndeb-default-adjust-functions): Ditto.
* ndtp.el (ndtp-reference-pattern, ndtp-default-heading-functions,
ndtp-default-adjust-functions, ndtp-default-arrange-functions): Ditto.
* ndict.el (ndict-reference-pattern, ndict-default-arrange-functions,
ndict-default-adjust-functions): Ditto.
* ndnmz.el (ndnmz-default-arrange-functions,
ndnmz-default-adjust-functions): Ditto.
* ndkks.el (ndkks-default-arrange-functions,
ndkks-default-adjust-functions): Ditto.
* ndmisc.el (ndmisc-default-arrange-functions,
ndmisc-default-adjust-functions): Ditto.
1999-01-10 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-package.el (lookup-use-package): Use `PACKAGE.el' as a
master file instead of `main.el'. Package format 1.1.
1998-12-27 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-entry.el (lookup-entry-open): Just only fill display.
(lookup-entry-open-other): New command using open command.
(lookup-entry-list-history): Remove command.
* ndic.el: Remove `text' from valid methods.
* ndic.el (ndic-default-arrange-functions): Don't fill paragraph.
* ndict.el (ndict-default-arrange-functions): Ditto.
* lookup-entry.el (lookup-entry-mode-map): Bind
`lookup-entry-content-window' to `h'.
* lookup-content.el (lookup-content-entry-window): New command.
(lookup-content-leave): Call `lookup-entry-display-content'.
1998-12-26 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-vars.el.in (lookup-enable-gaiji): Set `t' by default.
* ndkks.el (ndkks-dictionary-search): Do search even when some
entries were already found.
1998-12-25 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-vse.el (lookup-arrange-gaijis): New function.
* ndtp.el (ndtp-arrange-gaijis): Remove function. Use above instead.
(ndtp-gaiji-regexp): New variable.
* ndeb.el (ndeb-arrange-gaijis): Remove function. Use above instead.
(ndeb-gaiji-regexp): New variable.
* lookup-types.el (dictionary): Add new property `heading'.
(lookup-dictionary-init): Reserve the option `headings'.
* lookup-vse.el (lookup-vse-search-query-internal): Arrange headings.
(lookup-arrange-heading): New function.
(lookup-format): Call `widen' before `funcall'.
* ndtp.el (ndtp-default-heading-functions): New variable.
(ndtp-make-entry): Not replace gaijis. Now use heading functions.
(ndtp-replace-gaijis): Remove function.
(ndtp-arrange-gaijis): Merged with old `ndtp-replace-gaijis'.
* ndeb.el (ndeb-default-heading-functions): New variable.
(ndeb-make-entry): Not replace gaijis. Now use heading functions.
(ndeb-replace-gaijis): Remove function.
(ndeb-arrange-gaijis): Merged with old `ndeb-replace-gaijis'.
* lookup-vse.el (lookup-arrange-references,
lookup-dynamic-code-search): New functions.
* ndtp.el (ndtp-arrange-references, ndtp-dictionary-reference-pattern):
Remove functions. Use `lookup-arrange-references' instead.
* ndeb.el (ndeb-arrange-references, ndeb-dictionary-reference-pattern):
Remove functions. Use `lookup-arrange-references' instead.
* ndic.el (ndic-reference-pattern): New variable.
(ndic-arrange-references, ndic-dynamic-search) Delete functions. Use
`lookup-arrange-references' and `lookup-dynamic-code-search' instead.
* ndict.el (ndict-reference-pattern): New variable.
(ndict-arrange-references, ndict-dynamic-search) Delete functions. Use
`lookup-arrange-references' and `lookup-dynamic-code-search' instead.
* lookup-utils.el (lookup-oneline-string): New function.
1998-12-14 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndtp.el (ndtp-with-dictionary): Check the last used dictionary.
(ndtp-agent-process): Init ndtp-dict.
* ndeb.el (ndeb-with-dictionary): Check the last used dictionary.
(ndeb-dictionary-content): Fix the setting property of ndeb-stop.
(ndeb-agent-process): Init ndeb-dict. Set coding system if it is set.
1998-12-12 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 1.0pre7 released.
* lookup.el (lookup-initialize): Set program coding system for KAKASI.
1998-12-10 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup.el (lookup-suspend): Use `delete-frame' instead of
`make-frame-invisible'.
(lookup-pop-to-buffer): Use `raise-frame' instead of
`make-frame-visible'.
(Thanks to Masatoshi Tsuchiya!)
* ndeb.el (ndeb-agent-appendix): Expand file name first.
* lookup-compile.el: Set `byte-compile-warnings' to ignore warnings.
* lookup-content.el (lookup-content-mode): Delete setting of
`line-move-ignore-invisible'.
1998-12-04 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 1.0pre6 released.
* lookup-defs.el: Not define `lookup-bitmap-compose' on XEmacs.
* lookup-entry.el (lookup-entry-insert): newline first.
* lookup.el (lookup): Suspend Lookup when the Entry buffer is visible.
* ndspell.el (ndspell-dictionary-search): Search only when the
string has only ascii characters.
* ndeb.el (ndeb-reference-pattern): Fixed pattern.
* lookup-defs.el (lookup-glyph-insert): Kluge around.
(Thanks to Takeshi Hagiwara!)
1998-11-30 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndspell.el (ndspell-dictionary-search, ndspell-dynamic-search):
Change the format of the heading of candidates.
1998-11-28 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-vse.el (lookup-adjust-check-references): Set face even if
a reference is not refered.
1998-11-12 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 1.0pre5 released.
* ndeb.el (ndeb-reference-pattern): Fixed.
(ndeb-default-arrange-functions): Arrange references first.
(ndeb-arrange-references): Make entry with gaiji replacement.
* ndtp.el (ndtp-default-arrange-functions): Arrange references first.
(ndtp-arrange-references): Make entry with gaiji replacement.
(ndtp-dictionary-gaiji, ndtp-require-select): Get gaiji informations
by the previous methods.
* lookup-vars.el.in: Add new variable `lookup-search-found'.
* lookup.el (lookup-search-query): Set `lookup-search-found'.
* ndkks.el (ndkks-dictionary-search): Use `lookup-search-found'.
* ndspell.el (ndspell-dictionary-search): Use `lookup-search-found'.
1998-10-31 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 1.0pre4 released.
* ndeb.el: Add new variable `ndeb-reference-pattern'.
(ndeb-arrange-references): Modify to use `ndeb-reference-pattern'.
Delete variable `ndeb-default-filter-functions'.
(ndeb-dictionary-search): Remove duplicate by hard coding.
* ndtp.el: Add new variable `ndtp-reference-pattern'.
(ndtp-arrange-references): Modify to use `ndtp-reference-pattern'.
Delete variable `ndtp-default-filter-functions'.
(ndtp-dictionary-search): Remove duplicate by hard coding.
1998-10-30 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-vars.el.in: Add hook `lookup-load-hook'.
* lookup.el (lookup-initialize): Run `lookup-load-hook'.
1998-10-29 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-types.el: Sort dictionaries as listed in the option `enable'.
* ndkks.el (ndkks-dictionary-search): Search even when any entry
was found in other dictionary. Add pattern for Zenkaku alphabet.
1998-10-26 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup.el (lookup-word, lookup-word-other-window,
lookup-word-other-frame): New commands.
* lookup-vars.el (lookup-mouse-search-command): Set the value to
`lookup-word' by default.
* lookup-vse.el (lookup-vse-search-query-internal): Add a prefix
with the stemming result.
1998-10-23 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 1.0pre3 released.
* Unify the file coding system by junet.
* ndtp.el: Fixed gaiji routine.
1998-10-22 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 1.0pre2 released.
* ndtp.el: Rewrite gaiji routine.
1998-10-20 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndic.el (ndic-setup): Get the dictionary title.
* ndcookie.el (ndcookie-setup): Fixed.
1998-10-19 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndspell.el (ndspell-get-process): Add options "-m".
1998-10-17 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndtp.el (ndtp-dictionary-regexp): Fixed for output of dserver.
(Thanks to Uichi Katsuta!)
1998-10-14 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndkks.el (ndkks-dictionary-search): Search only when no entry
found by other dictionaries.
(ndkks-get-process): Wait just a little.
* lookup.el (lookup-hide-buffer): Fixed to switch buffer only when
the buffer has a window.
1998-10-14 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 1.0pre1 released.
* Many Many Many files were modified and sophisticated.
Most of files were rewriten now.
* lookup.el: Add several useful functions and commands. Delete
some disuse functions. Many functions were rewriten.
Lookup now has new search routine, new buffer management system,
new reference control functions, and so on.
* lookup-vars.el.in: Renamed from `lookup-vars.el'.
* lookup-defs.el: Renamed from `lookup-defs.el.in'.
* lookup-xemacs.el, lookup-mule.el: Deleted. Merged into
`lookup-defs.el'.
* lookup-setup.el: Deleted. Merged into `lookup-types.el'.
* lookup-search.el: Deleted. Merged into several files.
* lookup-format.el: Deleted. Merged into `lookup-vse.el'.
* lookup-vse.el: New file based on late `lookup-search.el' and
`lookup-format.el'.
* lookup-mouse.el: Deleted. Now we have a new command
`lookup-selection' defined in `lookup.el'.
* lookup-vars.el.in: Use `Custom' package to define variables.
Add several useful variables. Delete some disuse varialbes.
* lookup-utils.el (lookup-foreach, lookup-map-until): New functions.
(lookup-grep): Renamed from `lookup-filter'.
(lookup-current-word-ascii): Check the word break.
* lookup-types.el: Rewriten all over data types. Many files were
updated.
* lookup-package.el: Rewriten as package version 1.0.
Some new variables and functions are available.
* lookup-entry.el, lookup-content.el: Sophisticated.
* ndic.el, ndeb.el, ndtp.el, ndict.el, ndnmz.el, ndkks.el,
ndspell.el, ndcookie.el: Rewriten.
* ndmisc.el: New file.
* README: Renemed from FILES.
1998-08-26 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 1.0b2 released.
* lookup-utils.el (lookup-current-word): Fixed.
(Thanks to yamagata@nwgpc.kek.jp!)
* lookup-compile.el: Set language environment.
1998-08-08 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 1.0b1 released.
* ndict.el: Fixed the search routine.
* lookup-vars.el (lookup-gaiji-compose-function): Fixed.
1998-08-01 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 1.0b0 released.
* lookup-vars.el (lookup-init-file): Use `init-file-user'.
1998-07-25 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 0.11b3 released.
* lookup-package.el (lookup-set-agent-option,
lookup-set-dictionary-option): New functions.
(lookup-use-package): Use aboves.
1998-07-23 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 0.11b2 released.
* ndict.el: Some fixes.
(Thanks to ISHIKAWA Masahiro!)
1998-07-20 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndnmz.el (ndnmz-dictionary-search): Update for Namazu 1.2.x.
* lookup.el (lookup-temp-buffer): New function.
(lookup-intern-string): Moved from `lookup-utils.el'.
* lookup-utils.el: Delete function `lookup-duplicate-buffer'.
1998-07-15 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndkks.el: Recover file.
* lookup-defs.el.in: Renamed from `lookup-defs.el' with
definitions of `lookup-version' and `lookup-data-directory'.
* Makefile.am: Modified to generate lookup-defs.el.
* lookup-search.el (lookup-set-session): Close content buffer
before display the search result.
* lookup-entry.el: Delete variable `lookup-entry-sub-method'.
(lookup-entry-mode): Modify the buffer identification.
* lookup-search.el (lookup-set-session): Updated.
* lookup-types.el (lookup-new-gaiji-table): Renamed from
`lookup-make-gaiji-table'.
(lookup-make-gaiji-table, lookup-gaiji-table-set): New functions.
* lookup-search.el (lookup-gaijis-cache-put): Updated.
* lookup-entry.el (lookup-entry-kill-ring-save-content): Fixed.
1998-07-12 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 0.11a2 released.
* lookup-vars.el: Add new variables `lookup-default-agent-options'
and `lookup-default-dictionary-options'.
* lookup-types.el (lookup-agent-get-option,
lookup-dictionary-get-option): Use aboves.
* lookup-search.el (lookup-search-string-1): Rename the option
name `stem' to `stemmer'. Change the stemming procedure.
* stem.el: New file this time....
1998-07-12 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 0.11a1 released.
* lookup-search.el (lookup-search-string-1): New function.
(lookup-search-string): Use `lookup-search-string-1'.
* lookup-search.el (lookup-entry-search): Show message while looking.
(lookup-search-string): Show message what dictionary is used.
* stem.el: New file by Tsuchiya Masatoshi.
1998-07-10 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-vars.el: Add new variable `lookup-use-kakasi'.
* lookup-utils.el (lookup-current-word): Moded from `lookup.el'.
(lookup-current-word-general, lookup-current-word-ascii,
lookup-current-word-japanese): New functions.
1998-06-25 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 0.9.6 released.
* lookup-utils.el: Fixed not to kill buffer when the process has
no buffer. (Thanks to Mito!)
1998-06-20 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 0.9.5 released.
* lookup-search.el (lookup-open-entry): Make the content window
full by default.
* lookup.el (lookup-close-buffer): More strictly.
* lookup-types.el (lookup-dictionary-command-possiblep): New function.
* lookup-content.el (lookup-content-leave): Goto the beginning of
buffer and select the Entry window.
* lookup-misc.el: Fixed a problem.
(Thanks to KORIYAMA Naohiro!)
1998-06-18 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 0.9.4 released.
* lookup-entry.el (lookup-entry-isearch-content): New command.
* lookup-misc.el: Make select-mode practicable.
* lookup.el (lookup-current-module): New function.
* lookup-entry.el (lookup-entry-research-pattern,
lookup-entry-update): Use selected dictionaries.
(lookup-entry-mode): Set current-module as buffer local variable.
* lookup-content.el: Delete variable `lookup-content-history'.
1998-06-17 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 0.9.3 released.
1998-06-16 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndspell.el: Move the definition of target-reference from
`lookup-format.el'.
* ndeb.el, ndtp.el: Initialize in any time starting a process.
* ndspell.el (ndspell-get-process): Set process-coding-system.
(Thanks to ISHIKAWA Masahiro!)
* ndeb.el (ndeb-arrange-references): Fixed a missing.
(Thanks to Keisuke Mori!)
1998-06-15 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 0.9.2 released.
* ndeb.el (ndeb-setup): Check eblook version and started before all.
* lookup-entry.el (lookup-entry-mode): Modify the value of variable
`mode-line-buffer-identification'.
* lookup-search.el (lookup-set-session): Updated.
* lookup-search.el (lookup-set-session): Get optional secondary
argument DISPLAY and redisplay iff it is non-nil. Fixed some bugs.
* lookup-search.el (lookup-show-entries): New function replaced
with `lookup-entry-insert'.
* lookup-entry.el (lookup-entry-list-links): Updated.
* lookup-format.el (lookup-link-follow): Updated.
* lookup-search.el: Rename several functions:
(lookup-set-session): Renamed from `lookup-entry-set-session'.
(lookup-append-entries): Renamed from `lookup-entry-append-entries'.
(lookup-current-excursion): Renamed from `lookup-entry-current-excursion'.
(lookup-set-excursion): Renamed from `lookup-entry-set-excursion'.
Many files are updated.
* Delete file `lookup-access.el'.
* lookup-search.el: New file with search related functions
collected from `lookup-access.el', `lookup-entry.el' and
`lookup-content.el'.
* lookup-setup.el: New file with setup related functions collected
from `lookup-access.el' and `lookup-types.el'.
1998-06-14 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 0.9.1 released.
* lookup-types.el (lookup-entry-name): Modified to use the
dictionary ID for entry name.
* lookup-entry.el (lookup-entry-current-excursion,
lookup-entry-set-excursion): Fixed to set the window position
correctly.
* lookup-content.el (lookup-content-next-reference): Fixed to show
the reference name correctly.
* lookup-entry.el (lookup-entry-info): New commmand.
(lookup-entry-list-links): New command replaced with
`lookup-entry-list-references'.
* lookup-format.el: Add new reference type `link' replaced with
`lookup-determinant-reference' and `lookup-definitive-reference'
* ndic.el, ndeb.el, ndtp.el: Updated.
* lookup-misc.el: New file replaced with `lookup-select.el'.
This file provide `lookup-info-mode' and `lookup-select-mode'.
* lookup-utils.el (lookup-nunique): Add secondary argument PREDICATE.
* lookup-types.el (lookup-entry-compare, lookup-unique-entries):
New functions.
* ndtp.el, ndeb.el: Use `lookup-unique-entries' as filter function.
1998-06-13 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 0.9 released.
* ndeb.el: Make variable `ndeb-process-prompt' user customizable.
* ndtp.el (ndtp-dictionary-gaiji): Fixed an error.
(Thanks to yamagata@nwgpc.kek.jp!)
1998-06-12 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-types.el: Modify the mechanism of plist of each data
types for debugging.
(lookup-new-plist): New function.
* ndeb.el (ndeb-require-set): Unset variable if secondary argument
VALUE is `nil'.
(ndeb-dictionary-stopcode): New function.
(ndeb-with-dictionary): Set `stop-code' when a dictionary is selected.
1998-06-10 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 0.9b14 released.
* lookup-mule.el, lookup-xemacs.el (lookup-gaiji-insert): Moved
from `lookup-types.el'.
* lookup-utils.el (lookup-process-require): Fixed a misfeature on
recursive call.
* lookup-access.el (lookup-search-string): Fixed a cache missing.
1998-06-09 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-access.el (lookup-get-gaiji): Changed the alternate
string to "_" by default.
* lookup-types.el (lookup-gaiji-insert): Modified to insert gaijis
correctly.
* ndtp.el (ndtp-replace-gaijis): Modified.
* ndeb.el (ndeb-replace-gaijis): Modified.
* lookup-entry.el (lookup-entry-insert-entry): Fixed an error in
the case of gaiji-ended headword.
(Thanks to Yoshishige Arai and Takeshi Hagiwara!)
1998-06-05 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* Version 0.9b13 released.
* lookup-entry.el (lookup-entry-kill-ring-save-content): Modified
to use `cite-header' and `cite-prefix' as dicitonary options.
* lookup-types.el: Rename the functions `lookup-agent-name' and
`lookup-agent-title' to `lookup-agent-id' and `lookup-agent-name'.
* lookup-types.el: Delete the function `lookup-dictionary-ref'.
(lookup-dictionary-get-option): Modified to refer to agent options
by default.
1998-06-04 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndeb.el (ndeb-require-set): Modified to use `format' instead of
`concat'.
* lookup.el (lookup-mouse-follow-reference): Modified to use
`mouse-set-point'.
* lookup-entry.el, lookup-content.el (lookup-*-map): Fixed for XEmacs.
(Thanks to IKEYAMA Tomonori!)
1998-06-02 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndtp.el (ndtp-require-search): Fixed to check the result strictly.
(Thanks to yamagata@nwgpc.kek.jp!)
1998-05-31 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-types.el: Renamed the entry "heading" to "headword".
Many files are updated.
* lookup-types.el: Rename variable `lookup-string-search-methods'
to `lookup-word-search-methods'.
* lookup.el (lookup-initial-setup): Modified to set default value
of varables `lookup-enable-buffer-cache' and
`lookup-enable-process-buffer'.
1998-05-30 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-package.el (lookup-use-package): Modified to use
"main.el" as the main file of packages.
* lookup-types.el (lookup-parse-pattern): Modified to check
pattern of `match exact'.
* lookup-entry.el (lookup-entry-kill-ring-save-content): Modified
to use agent options `cite-header' and `cite-prefix'.
1998-05-29 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndtp.el (ndtp-agent-account): New function.
(ndtp-setup): Modified to use ndtp-agent-account.
1998-05-27 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-types.el: Modify the mechanism of initializing module.
(lookup-new-module): New function.
* lookup-access.el (lookup-new-agent): New function.
* lookup.el (lookup-initial-setup): Updated.
* lookup-access.el (lookup-agent-select-dictionaries): Modified to
select dictionaries according to agent options `select' and `unselect'.
(lookup-agent-init): Fixted to get options correctly.
1998-05-25 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup.el (lookup-input-dictionary, lookup-current-prefix):
Delete functions.
* lookup-compile.el: Renamed from lookup-compile.el.in.
1998-05-23 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-entry.el (lookup-entry-search): Fixed to show error
message with original input pattern.
1998-05-22 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* ndic.el: New agent.
* ndkks.el: Delete file.
1998-05-18 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-vars.el: Add new variables `lookup-save-configuration',
`lookup-window-configuration'.
* lookup.el (lookup-entry-pop-up): Modified to save window
configuration.
* lookup-entry.el (lookup-entry-quit): Modified to restore window
configuration.
1998-05-17 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-types.el (lookup-make-gaiji-table,
lookup-gaiji-table-ref): New functions.
* lookup-entry.el (lookup-entry-next-entry,
lookup-entry-previous-entry): Fixed an problem.
1998-05-16 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-vars.el: Add new variables `lookup-debug-mode',
`lookup-enable-buffer-cache' and `lookup-enable-process-buffer'.
* lookup-access.el (lookup-contents-cache-put): Updated.
* ndtp.el, ndict.el, ndeb.el, ndkks.el, ndspell.el: Updated.
* lookup-utils.el (lookup-process-require): Modified to generate
temporary buffer when process has no buffer, and to set process
filter directory.
* ndtp.el, ndict.el, ndeb.el, ndkks.el, ndspell.el: Updated.
* lookup-utils.el: Rename variable `lookup-process-output-finish'
to `lookup-process-output-finished'.
(lookup-process-require, lookup-process-accept): Updated.
* ndtp.el (ndtp-with-agent): Renamed from `ndtp-with-agent-process'.
* ndeb.el (ndeb-with-agent): Renamed from `ndeb-with-agent-process'.
1998-05-14 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup-vars.el: Delete variable
`lookup-initial-selected-dictionaries'.
* lookup-access.el (lookup-agent-select-dictionaries): Updated.
1998-05-12 NISHIDA Keisuke <knishida@nn.iij4u.or.jp>
* lookup.el (lookup-input-pattern): Modified not to get secondary arg.
1998-05-01 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* ndtp.el: Modified to insert gaiji with NDTPD-2.x.
(ndtp-dictionary-gaiji): New function.
* ndeb.el (ndeb-require-font): Fixed to get a font correctly.
1998-04-30 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* lookup-utils.el (lookup-process-wait): Delete function.
* lookup-entry.el (lookup-entry-open): New command.
* lookup.el (lookup-follow-reference): Fixed a bug setting refered
face even when a reference has no face.
1998-04-29 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* ndict.el, ndnmz.el: New agents.
* ndinfo.el: Delete file.
1998-04-27 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* lookup-access.el (lookup-get-gaiji): Renamed from
lookup-insert-gaiji.
* lookup-types.el (lookup-gaiji-insert): New function.
1998-04-26 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* ndbook-common.el: Delete file.
* ndtp.el, ndeb.el: Rewriten.
* lookup-entry.el: Modified some keybindings for entry mode.
(lookup-entry-research-pattern): Ranamed from
`lookup-entry-lookup-pattern'.
(lookup-entry-list-references): New command.
* lookup-types.el: Rewriten all over the data types.
(lookup-check-type): New function.
1998-04-09 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* lookup-vars.el: Add new variable `lookup-proceeding-message'.
* lookup.el (lookup-proceeding-message): New function.
* lookup-access.el (lookup-search-string, lookup-agent-setup,
lookup-insert-content): Modified to use lookup-proceeding-message.
* lookup-format.el (lookup-arrange-content, lookup-adjust-content,
lookup-format): Updated.
* ndtp.el, ndeb.el, ndinfo.el, ndcookie.el, ndkks.el, ndspell.el:
Updated.
1998-04-05 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* lookup.el (lookup-goto-next-reference): Modified not to show message.
(lookup-goto-previous-reference): New function.
* lookup-content.el (lookup-content-next-reference): Updated.
* lookup-entry.el (lookup-entry-next-entry,
lookup-entry-previous-entry): Updated.
* lookup.el (lookup-process-require, lookup-process-accept,
lookup-process-wait, lookup-process-kill): Moved to lookup-utils.el.
1998-04-04 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* lookup-types.el (lookup-canonicate-pattern): Merged to
`lookup-parse-pattern'.
* lookup-entry.el (lookup-entry-search, lookup-entry-set-session,
lookup-entry-append-entries): Modified to show entries dynamically.
1998-04-03 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* lookup-vars.el: Add new variable `lookup-enable-cache'.
* lookup-access.el: (lookup-search-string, lookup-insert-content,
lookup-insert-gaiji): Modified to use `lookup-enable-cache' to
force update.
* lookup-content.el, lookup-entry.el: Updated.
1998-04-02 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* lookup-vars.el: Add new variables `lookup-entry-cite-header' and
`lookup-entry-cite-prefix'.
* lookup-entry.el (lookup-entry-kill-ring-save-content): Modified
to save content with the cite header and prefix if necessary.
1998-03-20 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* lookup-vars.el: New variable `lookup-enable-description'.
* lookup-types.el (lookup-entry-description,
lookup-entry-set-description): New functions.
* lookup-entry.el (lookup-entry-insert-entry): Modified to insert
the short description of entry.
* lookup-types.el: (lookup-entry-refered-p): Fixed to check
refered correctly.
1998-03-16 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* lookup-vars.el (lookup-max-text): New varialbe.
(lookup-max-hits): Renamed from `lookup-entry-max-hits'.
* ndeb.el (ndeb-setup): Updated.
* lookup-vars.el: Delete variable `lookup-enable-gaiji'.
* lookup-access.el (lookup-insert-gaiji): Updated.
1998-03-16 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* Version 0.8.5 released.
1998-03-15 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* Makefile.am: Modified to make tags file.
* lookup-compile.el.in: Modified to load optional packages before
compile.
* lookup.el (lookup-initial-setup): New function.
* lookup-vars.el: Modified to initialize variable
`lookup-gaiji-insert-function' in lookup-initial-setup.
* lookup-vars.el: Make variable `lookup-gaiji-insert-function'
internal.
* lookup-types.el: Renamed the search words of `forward' or
`backward' to `prefix' or `suffix'.
* ndspell.el, ndtp.el, ndeb.el: Updated.
* lookup-entry.el
(lookup-entry-set-session): Modified to save excursion.
(lookup-entry-current-excursion, lookup-entry-set-excursion):
New functions.
* lookup-types.el: Modified the structure of `session' type.
* lookup-entry.el, lookup-format.el: Updated.
* lookup-types.el (lookup-parse-pattern): Modified to canonicate
pattern before parsing.
* lookup.el (lookup-pattern): Updated.
1998-03-14 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* lookup-mule.el: Define autoload for bitmap package.
* lookup-entry.el (lookup-entry-next-entry):
Recenter on the top or bottom line of entry window.
* lookup-types.el: Modified the structure of `dictionary' type.
* ndtp.el, ndeb.el, ndebook-common.el, ndcookie.el, ndspell.el,
ndkks.el: Updated.
* lookup-entry.el (lookup-entry-search):
* lookup-types.el (lookup-parse-pattern):
Modified not to search when input string is empty.
* lookup-vars.el (lookup-gaiji-compose-function): Modified to
check the features of `lookup-xemacs' or `lookup-mule'.
1998-03-13 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* lookup-mule.el, lookup-xemacs.el, lookup-vars.el: Set variables
`lookup-gaiji-compose-function' and `lookup-gaiji-insert-function'
only in lookup-vars.el and fixed loading of bitmap.
1998-03-09 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* Version 0.8.4 released.
* lookup-access.el (lookup-insert-gaiji): Fixed again....
1998-03-08 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* Version 0.8.3 released.
* lookup-access.el, ndebook-common.el: Fixed an error when no
gaiji replacement object exists.
* lookup-compile.el.in: Integrate `command-line-args-left' within
lookup-compile.el.in instead of in evi.el.
1998-03-08 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* Version 0.8.2 released.
1998-03-07 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* evi.el, evi-mule.el, evi-xemacs.el: New files.
* lookup-defs.el, lookup-mule.el: Modified to use `evi'.
* ndeb.el, ndtp.el, ndkks.el (*-process-coding-system):
Modified to use `lookup-get-coding-system'.
* lookup.el (lookup-exit): Fixed to clear module
`lookup-search-module' instead of `lookup-current-module'.
* lookup-compile.el is replaced with lookup-compile.el.in.
* Makefile.am: Updated.
1998-03-06 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* Version 0.8.1 released.
* Makefile.am: Removed the definition of lispdir since it will be
set suitably by configure program.
1998-03-05 NISHIDA Keisuke <knishida@osk.3web.ne.jp>
* Version 0.8 released.
|