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
|
2003-03-18 Francesco Potort,Al(B <pot@gnu.org>
* Version 21.3 released.
2002-09-05 Kenichi Handa <handa@etl.go.jp>
* quail/thai.el (thai-kesmanee): Fix the mapping of `"' and `}'.
2002-06-20 Dave Love <fx@gnu.org>
* quail/latin-pre.el ("latin-3-prefix"): Remove bogus Latin-3
characters and ~o -> $,1 A(B, ~O -> $,1 @(B.
2002-05-17 Eli Zaretskii <eliz@is.elta.co.il>
* Makefile.in (install): Use "tar -chf", to follow symlinks.
2002-03-16 Eli Zaretskii <eliz@is.elta.co.il>
* Version 21.2 released.
2001-11-29 Dave Love <fx@gnu.org>
* quail/latin-ltx.el: Fix some Latin-4 characters.
2001-10-20 Gerd Moellmann <gerd@gnu.org>
* Version 21.1 released.
2001-10-19 Eli Zaretskii <eliz@is.elta.co.il>
* CXTERM-DIC/Punct-b5.tit: Add big5 Chinese double spaced alphabet
mappings, so that one could type them without leaving the Hanyu
Pinyin input method. Suggested by Kenichi Handa
<handa@etl.go.jp>.
2001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
* quail/greek.el ("greek-babel"): New input method. From David
Kastrup <David.Kastrup@neuroinformatik.ruhr-uni-bochum.de>.
2001-09-05 Eli Zaretskii <eliz@is.elta.co.il>
* quail/greek.el ("greek-mizuochi"): Doc fix. From David Kastrup
<David.Kastrup@neuroinformatik.ruhr-uni-bochum.de>.
2001-08-06 Gerd Moellmann <gerd@gnu.org>
* quail/py-punct.el ("chinese-py-punct"): Copy the QUAIL-MAP of
"chinese-py".
("chinese-tonepy-punct"): Copy the QUAIL-MAP of "chinese-tonepy".
2001-07-16 Pavel Jan,Am(Bk <Pavel@Janik.cz>
* ja-dic/ja-dic.el, quail/cyril-jis.el, quail/cyrillic.el,
quail/czech.el, quail/devanagari.el, quail/ethiopic.el,
quail/greek.el, quail/hangul.el, quail/hangul3.el,
quail/hanja-jis.el, quail/hanja.el, quail/hanja3.el,
quail/hebrew.el, quail/ipa.el, quail/japanese.el, quail/lao.el,
quail/latin-alt.el, quail/latin-ltx.el, quail/latin-post.el,
quail/latin-pre.el, quail/lrt.el, quail/py-punct.el,
quail/pypunct-b5.el, quail/slovak.el, quail/symbol-ksc.el,
quail/thai.el, quail/tibetan.el, quail/viqr.el: Some fixes to
follow coding conventions.
2001-06-04 Andrew Choi <akochoi@i-cable.com>
* quail/.cvsignore: Change CTLauB.el to CTLau-b5.el.
2001-06-01 Andrew Innes <andrewi@gnu.org>
* makefile.nt (TIT_GB): Remove quail/PY.elc and quail/ZIRANMA.elc.
(NON_TIT_BIG5): Remove $(srcdir)/quail/tsang-b5.elc and
$(srcdir)/quail/pypunct-b5.elc.
(NON_TIT_CNS): Remove.
(CHINESE_NON_TIT): Remove $(NON_TIT_CNS).
(CHINESE_CNS): Remove.
(KOREAN): Add $(srcdir)/quail/hanja3.elc.
(LATIN): Add $(srcdir)/quail/latin-alt.elc and
$(srcdir)/quail/latin-ltx.elc.
(MISC_DIC): Copy from Makefile.in.
(CHINESE): Remove $(CHINESE_CNS).
(all): Add $(MISC_DIC) as target.
(.NOTPARALLEL): New target.
(.NO_PARALLEL): New target.
($(MISC_DIC)): New target.
(clean mostlyclean): Clean more stuff.
(TIT_EL): New macro.
(MISC_DIC_EL): New macro.
* makefile.w32-in (TIT-GB): Remove CTLau.elc from it.
(TIT-BIG5): Remove CTLauB.elc from it.
(MISC-DIC): Add CTLau.elc and CTLau-b5.elc to it.
(clean mostlyclean): Remove obsolete reference.
2001-06-01 Eli Zaretskii <eliz@is.elta.co.il>
* quail/latin-ltx.el [ms-dos]: Call IT-setup-unicode-display.
2001-05-24 Andrew Choi <akochoi@i-cable.com>
* Makefile.in (MISC-DIC): Change CTLauB.elc to CTLau-b5.elc.
* CXTERM-DIC/CTLau.tit, CXTERM-DIC/CTLauB.tit: Delete files.
* MISC-DIC/CTLau.html, MISC-DIC/CTLau-b5.html: Add files.
* Makefile.in (TIT-GB): Remove CTLau.elc from it.
(TIT-BIG5): Remove CTLauB.elc from it.
(MISC-DIC): Add CTLau.elc and CTLauB.elc to it.
2001-05-17 Dave Love <fx@gnu.org>
* quail/latin-ltx.el ("TeX"): Renamed from "latin-latex2e".
Language family and indicator changed. Many new translations.
2001-05-17 Gerd Moellmann <gerd@gnu.org>
* quail/slovak.el, quail/czech.el: Set guidance to t for czech and
slovak input methods. New maintainer. From Pavel Jan,Am(Bk
<Pavel@Janik.cz>.
2001-04-23 Gerd Moellmann <gerd@gnu.org>
* quail/latin-ltx.el: Add more translations. From
jsbien@mimuw.edu.pl (Janusz S. Bie$,1 d(B).
2001-04-19 Eli Zaretskii <eliz@is.elta.co.il>
* quail/hangul.el <korean-hangul>: Doc fix.
2001-04-18 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in (EMACSLOADPATH): Define.
($(TIT)):
($(MISC_DIC)):
(.el.elc):
(leim-list.el): Remove stuff to set EMACSLOADPATH.
2001-04-05 Gerd Moellmann <gerd@gnu.org>
* Makefile.in (install): Remove .cvsignore files.
* quail/japanese.el ("japanese-hankaku-kana"): Don't use
the same translations as for `japanese'.
2001-04-03 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in (TIT_GB): Delete quail/PY.elc and
quail/ZIRANMA.elc.
(NON_TIT_BIG5): Delete $(srcdir)/quail/quick-b5.elc and
$(srcdir)/quail/tsang-b5.elc.
(NON_TIT_CNS): Delete.
(CHINESE_NON_TIT): Delete $(NON-TIT-CNS).
(CHINESE_CNS): Delete.
(KOREAN): Add ${srcdir}/quail/hanja3.elc. From Kenichi Handa
<handa@etl.go.jp>.
(MISC_DIC): New variable.
(CHINESE): Delete $(CHINESE_CNS).
(WORLD): Add $(MISC_DIC).
(all): Depends on $(MISC_DIC).
(.NOTPARALLEL, .NO_PARALLEL): New special targets.
($(MISC_DIC)): New target.
(clean mostlyclean): Delete also $(NONTIT), $(WORLD), $(MISC_DIC)
and $(MISC_DIC:.elc=.el).
2001-04-02 Eli Zaretskii <eliz@is.elta.co.il>
* Makefile.in (KOREAN): Add ${srcdir}/quail/hanja3.elc. From
Kenichi Handa <handa@etl.go.jp>.
* Makefile.in (.NOTPARALLEL, .NO_PARALLEL): Add ${MISC-DIC}.
2001-03-31 Kenichi Handa <handa@etl.go.jp>
* Makefile.in (TIT-GB): Delete quail/PY.elc and quail/ZIRANMA.elc
(NON-TIT-BIG5): Delete ${srcdir}/quail/quick-b5.elc
${srcdir}/quail/tsang-b5.elc.
(CHINESE-NON-TIT): Delete ${NON-TIT-CNS}.
(CHINESE-CNS): Delete it.
(MISC-DIC): New variable.
(CHINESE): Delete ${CHINESE-CNS}.
(WORLD): Add ${MISC-DIC}.
(all): Depends on ${MISC-DIC}.
(${MISC-DIC}): New target.
(clean mostlyclean): Delete also ${MISC-DIC} ${MISC-DIC:.elc=.el}.
* MISC-DIC/cangjie-table.b5, MISC-DIC/cangjie-table.cns,
MISC-DIC/pinyin.map, MISC-DIC/ziranma.cin: New files.
* CXTERM-DIC/PY.tit, CXTERM-DIC/ZIRANMA.tit: Delete them.
* quail/tsang-b5.el, quail/tsang-cns.el, quail/quick-b5.el,
quail/quick-cns.el: Delete them.
2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
* Makefile.in (${TIT}): Fix whitespace.
2001-03-29 Eli Zaretskii <a34785@is.elta.co.il>
* Makefile.in (.NOTPARALLEL, .NO_PARALLEL): New special targets.
(${TIT}): If the target file already exist, don't remake it.
2001-03-21 Kenichi Handa <handa@etl.go.jp>
* quail/slovak.el ("slovak"): Translate "=q" to "`".
2001-03-16 Pavel Jan,Am(Bk ml. <Pavel@Janik.cz>
* quail/slovak.el ("slovak"): Delete translations of "q", "Q",
"=q", "+q", "=Q", and "+Q".
("slovak-prog-1"): Give t to the arg SHOW-LAYOUT.
("slovak-prog-2"): Likewise.
("slovak-prog-3"): Likewise.
2001-03-16 Eli Zaretskii <eliz@is.elta.co.il>
* quail/latin-post.el ("finnish-keyboard"): Fix a typo.
2001-03-16 Kenichi Handa <handa@etl.go.jp>
* quail/japanese.el (quail-japanese-transliteration-rules): New
variable. Use it to define these input methods: "japanese",
"japanese-hiragana", "japanese-katakana".
(quail-japanese-kana-state): Delete this variable.
(quail-japanese-toggle-kana): Don't use quail-japanese-kana-state,
instead check if there's any Hiraganas in the converison region.
2001-03-14 Kenichi Handa <handa@mule.m17n.org>
* quail/slovak.el ("slovak"): Give t to the arg SHOW-LAYOUT.
2001-03-06 Kenichi Handa <handa@etl.go.jp>
* CXTERM-DIC/4Corner.tit: Add copyright notice.
2001-03-05 Kenichi Handa <handa@etl.go.jp>
* quail/ethiopic.el ("ethiopic"): Docstring adjusted for the
change of the speicial key bindings.
2001-02-22 Kenichi Handa <handa@etl.go.jp>
* CXTERM-DIC/ARRAY30.tit: Add copyright notice.
* CXTERM-DIC/ETZY.tit: Likewise.
* CXTERM-DIC/ZOZY.tit: Likewise.
2001-02-05 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in (BUILT_EMACS): Use $(THISDIR) to make emacs.exe
path absolute.
2001-02-03 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in (LATIN): Fix last change to use () not {}.
2001-02-02 Kenichi Handa <handa@etl.go.jp>
* Makefile.in (LATIN): Include ${srcdir}/quail/latin-alt.elc.
* makefile.w32-in (LATIN): Likewise.
* quail/latin-ltx.el: New file -- LaTeX-like Latin input method.
2001-02-01 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in (LATIN): Include $(srcdir)/quail/latin-alt.elc.
2001-02-01 Kenichi Handa <handa@etl.go.jp>
* Makefile.in (LATIN): Include ${srcdir}/quail/latin-alt.elc.
* quail/greek.el ("greek-mizuochi"): New input method for
classical Greek.
2001-01-28 Gerd Moellmann <gerd@gnu.org>
* Makefile.in (extraclean): Added target so make doesn't die if
one runs "make extraclean" at the top level.
2001-01-06 Andrew Innes <andrewi@gnu.org>
* makefile.nt ($(TIT)): Map .elc to .el.
(buildlisppath): Make path relative to $(MAKEDIR).
2001-01-01 Andreas Schwab <schwab@suse.de>
* quail/latin-alt.el: Doc fixes.
2000-12-18 Dave Love <fx@gnu.org>
* quail/latin-pre.el <latin-9-prefix>: Delete duplicate $,1!!(B entry.
Change $,1 s(B, $,1 r(B, ,A6(B.
2000-12-16 Kenichi Handa <handa@etl.go.jp>
* ja-dic/ja-dic.el: Re-generated by the new ja-dic-cnv.el.
2000-12-06 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in (buildlisppath): Set to an absolute directory,
relative to $(CURDIR).
(INSTALLDIR): Use forward slash.
2000-11-24 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in (.SUFFIXES): New target, include .elc .el.
* makefile.nt (.SUFFIXES): New target, include .elc .el.
2000-11-21 Kenichi Handa <handa@etl.go.jp>
* Makefile.in (.SUFFIXES): New target, include .elc .el.
2000-11-17 Kenichi Handa <handa@etl.go.jp>
* quail/japanese.el (quail-japanese-kanji-kkc): Use marker to
remember the conversion start.
2000-10-21 Andrew Innes <andrewi@gnu.org>
* makefile.nt ($(TIT)): Add $(SUBDIRS) as dependents, instead
of conditional invocation of make.
(TIT-GB, TIT-BIG5, NON-TIT-GB, NON-TIT-BIG5)
(NON-TIT-CNS, JAPANESE, KOREAN, THAI, VIETNAMESE, LAO, INDIAN)
(TIBETAN, LATIN, SLAVIC, GREEK, RUSSIAN, MISC): Rename all .el
files to .elc.
($(TIT)): Adjusted for the above change.
(clean mostlyclean): Likewise.
(.el.elc): New target.
* makefile.w32-in ($(TIT)): Add $(SUBDIRS) as dependents, instead
of conditional invocation of make.
(TIT-GB, TIT-BIG5, NON-TIT-GB, NON-TIT-BIG5)
(NON-TIT-CNS, JAPANESE, KOREAN, THAI, VIETNAMESE, LAO, INDIAN)
(TIBETAN, LATIN, SLAVIC, GREEK, RUSSIAN, MISC): Rename all .el
files to .elc.
($(TIT)): Adjusted for the above change.
(clean mostlyclean): Likewise.
(.el.elc): New target.
2000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
* Makefile.in (${TIT}, clean): Don't use shell `command`
expansion, use ${TIT:.elc=.el} instead.
2000-09-26 Gerd Moellmann <gerd@gnu.org>
* Makefile.in: Make this the leim Makefile.in.
(clean): Also remove $NON-TIT and $WORLD.
(RUN-EMACS): Set EMACSLOADPATH.
2000-09-21 Kenichi Handa <handa@etl.go.jp>
* Makefile.in: Revert to no-leim Makefile.
* quail/.cvsignore: Include *.elc.
* ja-dic/.cvsignore: New file.
2000-09-16 Andrew Innes <andrewi@gnu.org>
* makefile.nt ($(TIT)): Set EMACSLOADPATH when running emacs.
(leim-list.el): Ditto.
* makefile.w32-in ($(TIT)): Set EMACSLOADPATH when running emacs.
(leim-list.el): Ditto.
2000-09-15 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in (clean mostlyclean): Ignore errors when removing
files.
2000-09-14 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in (clean mostlyclean): Ignore errors when deleting
leim-list.el.
(distclean maintainer-clean): Ditto for stamp-subdir.
* makefile.nt: Rename skkdic to ja-dic.
2000-09-07 Kenichi Handa <handa@etl.go.jp>
* quail/thai.el ("thai-kesmanee", "thai-pattachote"): Use keyboard
translation.
* quail/pypunct-b5.el ("chinese-py-punct-b5"): Docstring modified.
* quail/py-punct.el ("chinese-py-punct"): Docstring modified.
("chinese-tonepy-punct"): New input method.
* quail/latin-pre.el ("polish-slash"): Don't use keyboard
translation.
* quail/japanese.el ("japanese"): Delete the key sequence for
Roman transliteration from the docstring because it's now shonw
automatically.
("japanese-ascii", "japanese-zenkaku")
("japanese-hankaku-kana", "japanese-hiragana")
("japanese-katakana"): Docstring modified.
* quail/czech.el ("czech-qwerty"): Changed to show keyboard layout
on describe-input-method.
("czech-prog-1", "czech-prog-2", "czech-prog-3"): Likewise.
2000-09-03 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in: New file.
(install) Fix copying of directories.
2000-08-31 Kenichi Handa <handa@etl.go.jp>
* quail/thai.el (thai-generate-quail-map): If the length of
translation is more than one, compose it.
2000-08-29 Dave Love <fx@gnu.org>
* quail/latin-pre.el ("latin-9-prefix"): Change entries for $,1 s(B and $,1 r(B.
* Makefile.in: ja-dic <- skk in several places.
2000-08-25 Kenichi Handa <handa@etl.go.jp>
* ja-dic: Directory name changed from skkdic.
* ja-dic/ja-dic.el[c]: Re-generated by the new ja-dic-cnv.el.
* README: Rename skkdic to ja-dic throughout the file.
2000-08-24 Dave Love <fx@gnu.org>
* quail/latin-pre.el ("latin-8-prefix", "latin-9-prefix"): New.
("latin-1-prefix"): Add missing symbols.
2000-08-23 Dave Love <fx@gnu.org>
* quail/latin-pre.el ("latin-1-prefix"): Change ~s to give ,A'(B and
add ~p for ,A6(B.
2000-07-18 Kenichi Handa <handa@etl.go.jp>
* quail/japanese.el ("japanese"): Fix docstring.
2000-07-17 Kenichi Handa <handa@etl.go.jp>
* quail/japanese.el ("japanese"): Docstring modified.
2000-06-12 Kenichi Handa <handa@etl.go.jp>
* quail/tibetan.el (tibetan-wylie-quote-alist): This variable deleted.
("tibetan-wylie"): State transition table modified.
2000-06-01 Kenichi Handa <handa@etl.go.jp>
* quail/tibetan.el: Change all tibetan-1-column characters to
tibetan. Quail map for "tibetan-wylie" fixed.
2000-03-31 Wlodzimierz Bzyl <matwb@monika.univ.gda.pl>
* quail/latin-pre.el ("polish-slash"): New input method.
2000-03-02 Kenichi Handa <handa@etl.go.jp>
* quail/latin-pre.el ("latin-1-prefix"): Add rules for symbols.
2000-02-01 Gerd Moellmann <gerd@gnu.org>
* Makefile.in: Make this the no-leim Makefile. Move the
leim Makefile.in to ../leim-Makefile.in as it originally was.
* Makefile.noleim: Removed.
2000-01-28 Kenichi Handa <handa@etl.go.jp>
* quail/hanja.el (korean-hanja): Add an entry for "wod".
2000-01-04 Kenichi Handa <handa@etl.go.jp>
* quail/japanese.el ("japanese"): Docstring augmented.
1999-12-15 Kenichi Handa <handa@etl.go.jp>
* quail/lao.el: Rewritten for new composition.
* quail/lrt.el: Rewritten for new composition.
* quail/thai.el: Rewritten for new composition.
* quail/tibetan.el: Rewritten for new composition.
1999-12-13 Kenichi Handa <handa@etl.go.jp>
* quail/latin-pre.el ("esperanto-prefix"): Make it produce Latin-3
characters, not Latin-1.
1999-11-22 Andrew Innes <andrewi@gnu.org>
* makefile.nt: No need to generate subdirs.el.
1999-11-21 Andrew Innes <andrewi@gnu.org>
* makefile.nt: New file.
1999-10-26 Gerd Moellmann <gerd@gnu.org>
* Makefile.noleim: New.
1999-09-19 Ken'ichi Handa <handa@gnu.org>
* quail/latin-alt.el ("turkish-latin-3-alt-postfix"): Renamed from
turkish-postfix.
("turkish-postfix"): New Turkish input method which inserts
Latin-5 characters.
* quail/latin-alt.el ("turkish-latin-3-alt-postfix"): Renamed from
turkish-alt-postfix.
("turkish-alt-postfix"): New Turkish input method which inserts
Latin-5 characters.
1999-07-12 Richard Stallman <rms@gnu.org>
* Version 20.4 released.
1998-07-12 Oleg S. Tihonov <ost@benetnash.ffke-campus.mipt.ru>
* quail/cyrillic.el (cyrillic-jcuken): Use X11 keyboard layout.
1999-06-14 Ken'ichi Handa <handa@gnu.org>
* quail/ethiopic.el ("ethiopic"): Add translation rules.
1999-06-01 Jae-youn Chung <jay@compiler.kaist.ac.kr>
* quail/hanja3.el: Newly generated from hangul.el, hangul3.el, and
hanja.el.
1999-05-25 Ken'ichi Handa <handa@gnu.org>
* quail/hangul3.el ("korean-hangul3"): Give MAXIMUM-SHORTEST t.
1999-05-09 Tudor Hulubei <tudor@cs.unh.edu>
* quail/latin-pre.el ("romanian-prefix"): New input method.
("romanian-alt-prefix"): New input method.
1999-03-04 Kenichi Handa <handa@etl.go.jp>
* quail/latin-post.el ("spanish-postfix"): Add rule U" and u".
1999-01-14 Kenichi Handa <handa@etl.go.jp>
* quail/japanese.el (quail-japanese-kanji-kkc): If the last char
to convert is `n', change it to Japanese Hiragana `n' before
conversion.
1999-01-11 Kenichi Handa <handa@etl.go.jp>
* Makefile.in (MISC): Add ${srcdir}/quail/hebrew.el.
* quail/hebrew.el: New file.
1998-12-15 Kenichi Handa <handa@etl.go.jp>
* quail/devanagari.el (quail-devanagari-compose-characters):
Adjusted for the change of input method handling.
(quail-devanagari-hindi-compose-characters): Likewise.
1998-10-15 Kenichi Handa <handa@etl.go.jp>
* Makefile.in (leim-list.el): Use `(cd foo && pwd)` instead of
`(cd foo; pwd)`.
(install): Likewise.
1998-10-15 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
* quail/latin-post.el: Many doc fixes.
("latin-1-postfix"): Add sequence for the small superscript o.
* quail/latin-pre.el: Many doc fixes.
("latin-1-prefix"): Add sequences for the small
superscript underlined o and a.
1998-10-13 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
* latin-alt.el ("latin-1-alt-postfix"): Add a method to enter the
small superscript underlined o and a.
("italian-alt-postfix"): Change it to something useful and
different from italian-postfix.
* latin-post.el ("latin-1-postfix"): Add a method to enter the
small superscript underlined o and a.
("italian-postfix"): Same as above.
("italian-postfix"): Add methods to enter e with acute accent and
the >> and << symbols.
1998-09-25 Kenichi Handa <handa@etl.go.jp>
* quail/japanese.el (quail-japanese-hankaku-update-translation):
Adjusted for the change of input method handling.
1998-09-11 Kenichi HANDA <handa@etl.go.jp>
* quail/japanese.el (quail-japanese-katakana-update-translation):
Adjusted for the change of input method handling.
1998-08-31 Kenichi Handa <handa@etl.go.jp>
* quail/tibetan.el (quail-tibetan-input-wylie): Adjusted for the
change of input method handling.
(quail-tibetan-input-tibkey): Likewise.
1998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
* Version 20.3 released.
1998-08-16 Kenichi HANDA <handa@etl.go.jp>
* quail/czech.el ("czech"): Make this input method deterministic,
kbd-translate, and show-layout.
1998-08-15 Kenichi HANDA <handa@etl.go.jp>
* quail/ethiopic.el: Fix several translation rules.
1998-08-12 Milan Zamazal <pdm@fi.muni.cz>
* quail/czech.el: Few key sequences added to some keyboards.
1998-08-06 Kenichi Handa <handa@etl.go.jp>
* quail/japanese.el (quail-japanese-use-double-n): New variable.
(quail-japanese-update-translation): Adjusted for the change of
quail-update-translation. Now this function should return
CONTROL-FLAG.
(quail-japanese-toggle-kana): Update quail-conversion-str.
(quail-japanese-kanji-kkc): Likewise.
(quail-japanese-switch-package): Reset quail-current-str and
quail-conversion-str.
1998-07-24 Kenichi Handa <handa@etl.go.jp>
* quail/japanese.el (quail-japanese-kanji-kkc): Set
quail-translation to nil after calling kkc-region so that
translation mode is restarted correctly.
1998-07-21 Kenichi Handa <handa@etl.go.jp>
* quail/japanese.el (quail-japanese-kanji-kkc): Handle the case
that conversion is cancelled in kkc-region.
(quail-japanese-switch-package): Fix previous change.
1998-07-19 Kenichi Handa <handa@etl.go.jp>
* quail/japanese.el (quail-japanese-update-translation): Handle
a key which should fix the current translation and start a new
translation correctly.
(quail-japanese-toggle-kana): Set quail-translating to nil. Don't
change point.
1998-07-15 Kenichi Handa <handa@etl.go.jp>
* quail/japanese.el (quail-japanese-kanji-kkc): Adjusted for the
change of quail.el.
(quail-japanese-switch-package): Likewise.
1998-07-03 Kenichi Handa <handa@etl.go.jp>
* quail/symbol-ksc.el: Keys for modern Korean syllables fixed.
Some keys for ancient Korean syllables are changed properly.
1998-06-20 Kenichi Handa <handa@etl.go.jp>
* quail/ethiopic.el: Don't add hook to quail-mode-hook.
(ethio-select-a-translation): New function.
1998-06-10 Richard Stallman <rms@psilocin.ai.mit.edu>
* Makefile.in (RUN-EMACS): Add --multibyte.
1998-04-29 Karl Heuer <kwzh@gnu.org>
* Makefile.in (SLAVIC): Delete redundant backslash.
1998-04-28 Richard Stallman <rms@psilocin.gnu.org>
* Makefile.in (install): Make INSTALLDIR and contents world-readable.
1998-04-20 Kenichi Handa <handa@etl.go.jp>
* Makefile.in (SLAVIC): New macro.
(EUROPEAN): Include ${SLAVIC}.
1998-04-14 Andreas Schwab <schwab@mescaline.gnu.org>
* Makefile.in: Prepend ${srcdir} to all non-TIT lisp file names.
(leim-list.el): Depend on ${WORLD}.
* latin-alt.el (latin-2-alt-postfix): Doc fix.
1998-04-08 Karl Heuer <kwzh@mescaline.gnu.org>
* czech.el, slovak.el: Correct starting commentary.
1998-04-07 Milan Zamazal <pdm@fi.muni.cz>
* quail/czech.el, quail/slovak.el: Correct starting commentary.
1998-04-06 Andreas Schwab <schwab@gnu.org>
* lrt.el (lrt-composing-pattern-double-c): Change chars-in-string
to length.
(lrt-generate-quail-map): Change sref to aref, and make second
argument of substring a character index.
1998-03-26 Richard Stallman <rms@psilocin.gnu.org>
* Makefile.in (${TIT}): Fix shell conditional syntax.
1998-03-18 Kenichi Handa <handa@etl.go.jp>
* quail/latin-pre.el ("latin-1-prefix"): Fix the translation of
"/ " to "/" (instead of " ").
1998-03-17 Richard Stallman <rms@psilocin.gnu.org>
* quail/czech.el, quail/slovak.el: New files.
1998-03-10 Richard Stallman <rms@psilocin.gnu.org>
* Makefile.in (BUILT-EMACS): Variable renamed from EMACS.
Uses changed.
1998-03-05 Kenichi Handa <handa@etl.go.jp>
* Makefile.in (${TIT}): To byte-compile quail packages, use just
built quail.
1997-12-09 Koaunghi Un <koanughi.un@zdv.uni-tuebingen.de>
* quail/hanja3.el: New file.
* quail/hanja-jis.el: Title string of the input method
"korean-hanja-jis" changed.
* quail/symbol-ksc.el: Title string of the input method
"korean-symbol" changed. Require 'korea-util.
(quail-hangul-switch-back): Deleted.
* quail/hangul3.el: Require 'korea-util.
(quail-hangul-switch-to-symbol-ksc): Deleted.
* quail/hanja.el: Require 'korea-util. Title string of the input
method "korean-hanja" changed.
(quail-hanja-switch-to-symbol-ksc): Deleted.
* quail/hangul.el: Require 'korea-util.
(quail-hangul-switch-to-symbol-ksc): Deleted.
1997-10-23 Kenichi Handa <handa@etl.go.jp>
* quail/ethiopic.el: The title string of input method "Ethiopic"
is changed.
1997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* Version 20.2 released.
1997-09-18 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* quail/latin-post.el (german): Swap y and z.
1997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* Version 20.1 released.
* quail/latin-alt.el (latin-2-postfix): Use : for double-acute again.
1997-09-13 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* quail/viqr.el (vietnamese-viqr): Doc fix.
1997-09-13 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* quail/latin-alt.el: New file.
1997-09-12 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* quail/latin-post.el: Undo previous change.
1997-09-12 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* quail/latin-post.el (latin-2-postfix):
Replace comma and period with `. Replace colon with /.
(latin-1-postfix): Replace comma with /.
(french-postfix): Replace comma with /.
(latin-3-postfix): Replace comma with ` and period with /.
(latin-4-postfix): Replace comma with ` and period with ~.
(latin-5-postfix): Replace comma with ` and period with /.
(turkish-postfix): Replace comma with ` and period with /.
1997-09-10 Kenichi Handa <handa@etl.go.jp>
* quail/ethiopic.el: Don't bind keys in quail-mode-map. The
function added to quail-mode-hook turn ethio-mode on only when
input method "ethiopic" is begin used.
(ethio-prefer-ascii-space): Moved to lisp/language/ethio-util.el.
(ethio-toggle-space): Likewise.
(ethio-insert-space): Likewise.
(ethio-insert-ethio-space): Likewise.
(ethio-prefer-ascii-punctuation): Likewise.
(ethio-toggle-punctuation): Likewise.
(ethio-gemination): Likewise.
("ethiopic"): Doc-string of this Quail package modified. Bind
function keys for TRANSLATION-KEYMAP to
quail-execute-non-quail-command.
1997-09-10 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* Makefile.in (install): Use quail/* in the second tar that
copies a dir named quail.
1997-09-03 Ken'ichi Handa <handa@psilocin.gnu.ai.mit.edu>
* Makefile.in (install): Do not copy leim-list.el twice. Copy
`skk' subdirectory too.
1997-09-03 Kenichi Handa <handa@etl.go.jp>
* quail/cyrillic.el: For each package, pass t for the SIMPLE
argument to quail-define-package.
* quail/cyril-jis.el: Likewise
* quail/greek.el: Likewise.
* quail/ipa.el: Likewise.
* quail/lao.el: Likewise.
* quail/lrt.el: Likewise.
* quail/thai.el: Likewise.
* quail/viqr.el: Likewise.
1997-08-30 Naoto TAKAHASHI <ntakahas@etl.go.jp>
* quail/ethiopic.el ("ethiopic"): Doc-sring fixed. Change the arg
TRANSLATION-KEYS.
(quail-mode-map): Change binding for ethio-insert-ethio-space.
(quail-mode-hook): Check the current Quail package name.
* quail/latin-post.el: Add rules for cancelling accents by typing
two accent keys (e.g. a~ => a-tilde, a~~ => a~) to all Quail
packages.
1997-08-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* quail/latin-post.el, quail/latin-pre.el: For each package,
pass t for the SIMPLE argument to quail-define-package.
1997-08-28 Kenichi Handa <handa@etl.go.jp>
* Makefile.in (dotdot): This macro deleted.
(SUBDIRS): Exclude skk.
(all): Substitute ${WORLD} to ${TIT}.
(%.el): This target deleted.
(${TIT}): Check existence of `quail' subdirectory.
(leim-list.el): Do not check old files.
(install): If ${srcdir} is different from the current directory,
copy also files under ${srcdir}.
1997-08-26 Kenichi Handa <handa@etl.go.jp>
* Makefile.in: Re-arrange macros so that the macro TIT contains
only Quial packages generated from CXTERM dictionaries, and the
macro NON-TIT contains only Quial packages distributed with Emacs.
(install): Do not use -h option for tar, instead copy ${NON-TIT}
and ${TIT} separately.
1997-08-25 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* Makefile.in (install): Discard extra data in tar | tar command.
1997-08-23 Kenichi Handa <handa@etl.go.jp>
* quail/devanagari.el (quail-devanagari-compose-characters): Fix
previous change.
(quail-devanagari-hindi-compose-characters): Fix previous change.
* quail/japanese.el (quail-japanese-kkc-mode-exit): Fix previous
change.
1997-08-22 Ken'ichi Handa <handa@psilocin.gnu.ai.mit.edu>
* Makefile.in (leim-list.el): Fix previous change.
* quail/thai.el (thai-keyboard-mapping-alist): Some entry corrected.
1997-08-21 Kenichi HANDA <handa@etl.go.jp>
* quail/py-punct-b5.el: Name changed from py-punct-b5.el.
* quail/tsang-b5.el: Name changed from tsangchi-b5.el.
* quail/tsang-cns.el: Name changed from tsangchi-cns.el.
* Makefile.in (install): Just copy leim-list.el instead of running
update-leim-list-file on ${INSTALLDIR}.
(CHINESE-BIG5): File name change: tsangchi-b5.el -> tsang-b5.el,
py-punct-b5.el -> pypunct-b5.el.
(CHINESE-CNS): File name change: tsangchi-cns.el -> tsang-cns.el.
(leim-list.el): Delete old files not contained in ${WORLD}.
* quail/japanese.el (quail-japanese-kkc-mode-exit): Run
input-method-after-insert-chunk-hook.
* quail/thai.el (thai-keyboard-mapping-alist): Some entry corrected.
1997-08-19 Kenichi Handa <handa@etl.go.jp>
* quail/hangul.el ("korean-hangul"): Doc-string of this Quail
package fixed.
1997-08-18 Kenichi Handa <handa@etl.go.jp>
* quail/japanese.el (quail-japanese-toggle-kana): Don't call
throw.
(quail-japanese-kanji-kkc): Completely re-written.
(quail-japanese-kkc-mode-exit): New function.
(quail-japanese-switch-package): Call activate-input-method
instead of select-input-method.
* quail/thai.el (thai-consonant-input): Typo fixed.
* quail/devanagari.el (quail-devanagari-compose-characters): Do
not call throw.
(quail-devanagari-hindi-compose-characters): Likewise.
* quail/hangul.el (quail-hangul-switch-to-symbol-ksc): Call
activate-input-method instead of select-input-method.
* quail/hangul3.el (quail-hangul-switch-to-symbol-ksc): Likewise.
* quail/symbol-ksc.el (quail-hangul-switch-back): Likewise. Use
input-method-history instead of previous-input-method.
1997-08-16 Valery Alexeev <valery@domovoy.math.uga.edu>
* quail/cyrillic.el (cyrillic-translit-bulgarian): New input method.
1997-08-16 Kenichi Handa <handa@etl.go.jp>
* quail/lrt.el (lrt-vowel-table): Some elements corrected.
("lao-lrt"): Doc-string of this Quail package modified.
Some tranlation rules added.
* quail/lao.el (lao-keyboard-mapping): Some elements corrected.
(lao-quail-define-rules): Some translation rules corrected.
1997-08-11 Kenichi Handa <handa@etl.go.jp>
* quail/lrt.el: Some rules added for Quail package "lao-lrt".
(lrt-vowel-table): The entry for "aM" corrected.
1997-08-07 Kenichi Handa <handa@etl.go.jp>
* quail/lrt.el: Change title string of input method "lao-lrt".
(lrt-single-consonant-table): Several key sequence changed.
(lrt-composing-pattern-double-c): Handle a consonant with
semi-vowel-lower correctly.
(lrt-handle-maa-sakod): Do not reset quail-current-key.
(lrt-handle-tone-mark): Check the existence of double consonant
correctly.
* quail/lao.el: Change title string of input method "Lao".
1997-08-04 Valery Alexeev <valery@domovoy.math.uga.edu>
* quail/cyrillic.el (cyrillic-translit): Doc-string of the package
modified. Several tranlation rules modified.
1997-08-04 Ken'ichi Handa <handa@psilocin.gnu.ai.mit.edu>
* quail/cyrillic.el: Move Quail package cyrillic-jis-russian to
quail/cyril-jis.el.
* quail/cyril-jis.el: New file.
* Makefile.in (RUSSIAN): Add quail/cyril-jis.el.
1997-08-01 Kenichi Handa <handa@etl.go.jp>
* quail/ethiopic.el: In quail-mode-map, bind
ethio-insert-ethio-space Shift-SPACE. Add translation rules to
Quail package "ethiopic".
1997-08-01 Valery Alexeev <valery@domovoy.math.uga.edu>
* quail/cyrillic.el (cyrillic-translit): New input method.
1997-07-25 Ken'ichi Handa <handa@psilocin.gnu.ai.mit.edu>
* quail/tibetan.el: New file.
* quail/py-punct.el: Require 'quail.
* quail/py-punct-b5.el: Require 'quail.
* quail/ethiopic.el: Change Quail package name to "ethiopic".
(ethio-toggle-punctuation): Give "ethiopic" to quail-defrule.
* Makefile.in (TIT): New variable, contatination of TIT-GB and
TIT-BIG5.
(RUN-EMACS): Do not set EMACSLOADPATH.
(ASIA): Include TIBEAN.
(all): Remove stamp-bytecomp from dependency list.
({$TIT}): New target, substitues the target ${TIT-GB} ${TIT-BIG5}.
(%.el): Make a link for byte-compiled file too.
(stamp-bytecomp): Target deleted.
(leim-list.el): Run Emacs with loading quail.
(install-XXX): These targets deleted.
(install): Remove files under INSTALLDIR before copying new files.
Run Emacs with loading quail.
(clean mostlyclean): Remove only generated files.
1997-07-24 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* Makefile.in (stamp-bytecomp): Fix shell conditional.
(clean): Fix shell conditional.
1997-07-21 Jim Meyering <meyering@eng.ascend.com>
* Makefile.in: Use @LN_S@, not ln -s, in case no symlink support.
(clean): Absence of ./Makefile.in is criterion for deleting skkdic.elc.
1997-07-17 Ken'ichi Handa <handa@psilocin.gnu.ai.mit.edu>
* Makefile.in: Modified to avoid *.el files being regarded
as intermidiate files and deleted by GNU make.
* quail/lrt.el (lrt-vowel-table): Change "ow" -> "ao", "am" -> "arm".
(lrt-handle-maa-sakod): Correctly handle the case that
quail-current-data is nil.
(lrt-handle-tone-mark): Fix bug of handling key sequence "hhai" +
tone.
1997-07-15 Kenichi Handa <handa@etl.go.jp>
* quail/py-punct.el: New file.
* quail/py-punct-b5.el: New file.
* quail/japanese.el: Doc-string of Quail package japanese modified.
* Makefile.in: Rules re-written to avoid tricky code.
(CHINEGE-GB): Include quail/py-punct.elc.
(CHINEGE-BIG5): Include quail/py-punct-b5.elc.
1997-07-10 Kenichi Handa <handa@etl.go.jp>
* quail/latin-pre.el: Change titles of quail packages.
* quail/latin-post.el: Likewise.
;; Local Variables:
;; coding: iso-2022-7bit-unix
;; End:
Copyright (C) 1997, 1998, 1999, 2001 Free Software Foundation, Inc.
Copying and distribution of this file, with or without modification,
are permitted provided the copyright notice and this notice are preserved.
|