diff options
Diffstat (limited to 'leim')
34 files changed, 192 insertions, 86 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog index 9ccaad49175..6b83a887350 100644 --- a/leim/ChangeLog +++ b/leim/ChangeLog @@ -1,3 +1,40 @@ +2005-12-17 Eli Zaretskii <eliz@gnu.org> + + * makefile.w32-in ($(TIT), leim-list.el): Warn that parts of + commands enclosed in $(ARGQUOTE)s should not be split between two + lines, as that will break with GNU Make >3.80, when sh.exe is used + and arg quoting is with '..'. + +2005-11-03 Andreas Schwab <schwab@suse.de> + + * Makefile.in (GZIP_PROG): Renamed from GZIP. + (install): Adjust. + +2005-11-01 Romain Francoise <romain@orebokech.com> + + * Makefile.in (install): Compress source files. + +2005-10-28 Juri Linkov <juri@jurta.org> + + * quail/symbol-ksc.el: Add missing characters from 1st pos of + every table of [korean-ksc5601], and swap incorrectly ordered + characters at pos 91 and 90. + +2005-10-26 Torsten Bronger <bronger@physik.rwth-aachen.de> (tiny change) + + * quail/latin-ltx.el ("TeX"): Change "\," mapping to U+202F (not + U+2006). Add more mappings from TeX's textcomp package. + +2005-10-25 Juri Linkov <juri@jurta.org> + + * quail/cyrillic.el ("cyrillic-translit"): Set 4th arg `guidance' + to t for this multi-key input method. + +2005-10-24 Kenichi Handa <handa@m17n.org> + + * quail/uni-input.el (ucs-input-activate): Don't add + quail-kill-guidance-buf to kill-buffer-hook. + 2005-07-08 Kenichi Handa <handa@m17n.org> * quail/japanese.el (quail-japanese-kanji-kkc): Fix order of diff --git a/leim/Makefile.in b/leim/Makefile.in index ba7dc17e74d..b6011ac6628 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in @@ -1,9 +1,7 @@ # Makefile for leim subdirectory in GNU Emacs. -# Copyright (C) 1997,98,1999,2000,2001 Electrotechnical Laboratory, JAPAN. -# Licensed to the Free Software Foundation. -# Copyright (C) 1997,98,1999,2000,01,02,03,2004 +# Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. -# Copyright (C) 2001,02,03,2004 +# Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 # National Institute of Advanced Industrial Science and Technology (AIST) # Registration Number H14PRO021 @@ -37,6 +35,8 @@ srcdir=@srcdir@ # Where to install LEIM files. INSTALLDIR=${datadir}/emacs/${version}/leim +GZIP_PROG = @GZIP_PROG@ + # On Xenix and the IBM RS6000, double-dot gets screwed up. dot = . @@ -238,6 +238,14 @@ install: all rm -f ${INSTALLDIR}/*~ ${INSTALLDIR}/*/*~ ; \ rm -f ${INSTALLDIR}/*.orig ${INSTALLDIR}/*/*.orig ; \ else true; fi + -unset CDPATH; \ + if [ -n "${GZIP_PROG}" ]; \ + then \ + echo "Compressing *.el ..." ; \ + (cd ${INSTALLDIR}; for f in `find . -name "*.elc" -print`; do \ + ${GZIP_PROG} -9n `echo $$f|sed 's/.elc$$/.el/'` ; \ + done) \ + else true; fi -chmod -R a+r ${INSTALLDIR} clean mostlyclean: diff --git a/leim/leim-ext.el b/leim/leim-ext.el index 6d7b949d8d0..ecd22b7cf99 100644 --- a/leim/leim-ext.el +++ b/leim/leim-ext.el @@ -2,7 +2,7 @@ ;; Copyright (C) 2004 ;; Free Software Foundation, Inc. -;; Copyright (C) 2004 +;; Copyright (C) 2004, 2005 ;; National Institute of Advanced Industrial Science and Technology (AIST) ;; Registration Number H13PRO009 diff --git a/leim/makefile.w32-in b/leim/makefile.w32-in index a311990ec3a..73e44a5bfec 100644 --- a/leim/makefile.w32-in +++ b/leim/makefile.w32-in @@ -1,7 +1,9 @@ # -*- Makefile -*- for leim subdirectory in GNU Emacs on the Microsoft W32 API. -# Copyright (C) 1997, 2004 Electrotechnical Laboratory, JAPAN. -# Licensed to the Free Software Foundation. -# Copyright (C) 2005, Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 +# Free Software Foundation, Inc. +# Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 +# National Institute of Advanced Industrial Science and Technology (AIST) +# Registration Number H14PRO021 # This file is part of GNU Emacs. @@ -163,6 +165,9 @@ $(SUBDIRS): .NO_PARALLEL: $(TIT) $(MISC_DIC) # Rule to generate quail/*.el from CXTERM-DIC/*.tit. +# +# WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as +# this can break with GNU Make 3.81 and later if sh.exe is used. $(TIT): $(RUN_EMACS) -l $(buildlisppath)/international/titdic-cnv \ --eval $(ARGQUOTE)(batch-titdic-convert t)$(ARGQUOTE) \ @@ -177,6 +182,9 @@ $(MISC_DIC): $(RUN_EMACS) -l $(buildlisppath)/international/quail \ -f batch-byte-compile $(MISC_DIC:.elc=.el) +# +# WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as +# this can break with GNU Make 3.81 and later if sh.exe is used. leim-list.el: $(SUBDIRS) $(WORLD) $(RUN_EMACS) -l $(buildlisppath)/international/quail \ --eval $(ARGQUOTE)(update-leim-list-file $(DQUOTE).$(DQUOTE))$(ARGQUOTE) diff --git a/leim/quail/croatian.el b/leim/quail/croatian.el index 6e82d7b3ca3..09623077f3d 100644 --- a/leim/quail/croatian.el +++ b/leim/quail/croatian.el @@ -1,6 +1,6 @@ ;;; quail/croatian.el -- Quail package for inputing Croatian -*-coding: iso-8859-2;-*- -;; Copyright (C) 2002 Free Software Foundation. +;; Copyright (C) 2002 Free Software Foundation, Inc. ;; Author: Hrvoje Niki <hniksic@xemacs.org>, ;; modeled after czech.el by Milan Zamazal. diff --git a/leim/quail/cyril-jis.el b/leim/quail/cyril-jis.el index aa40624ffd7..f594518bdbf 100644 --- a/leim/quail/cyril-jis.el +++ b/leim/quail/cyril-jis.el @@ -1,7 +1,9 @@ ;;; cyril-jis.el --- Quail package for inputting JISX0208 Cyrillic letters -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. +;; Copyright (C) 2001 Free Software Foundation, Inc. +;; Copyright (C) 1997, 2005 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: multilingual, input method, Cyrillic diff --git a/leim/quail/cyrillic.el b/leim/quail/cyrillic.el index b9223c46851..15723676a0e 100644 --- a/leim/quail/cyrillic.el +++ b/leim/quail/cyrillic.el @@ -1,8 +1,10 @@ ;;; cyrillic.el --- Quail package for inputting Cyrillic characters -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. -;; Copyright (C) 2001, 2002 Free Software Foundation, Inc. +;; Copyright (C) 1997, 1998, 2001, 2002, 2003, 2004, 2005 +;; Free Software Foundation, Inc. +;; Copyright (C) 1997, 2005 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Author: TAKAHASHI Naoto <ntakahas@m17n.org> ;; Keywords: multilingual, input method, Cyrillic, i18n @@ -997,7 +999,7 @@ as follows. ;; language-independent and universal. It should be able to generate all ;; Cyrillic symbols. (quail-define-package - "cyrillic-translit" "Cyrillic" ",L6(Bt" nil + "cyrillic-translit" "Cyrillic" ",L6(Bt" t "Intuitively transliterated keyboard layout. Most convenient for entering Russian, but all Cyrillic characters are included. Should handle most cases. However: diff --git a/leim/quail/czech.el b/leim/quail/czech.el index e387814d0df..a3187f6994b 100644 --- a/leim/quail/czech.el +++ b/leim/quail/czech.el @@ -1,6 +1,6 @@ ;;; czech.el --- Quail package for inputting Czech -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1998, 2001 Free Software Foundation. +;; Copyright (C) 1998, 2001 Free Software Foundation, Inc. ;; Author: Milan Zamazal <pdm@zamazal.org> ;; Maintainer: Pavel Jan,Bm(Bk <Pavel@Janik.cz> diff --git a/leim/quail/ethiopic.el b/leim/quail/ethiopic.el index 0930f1d05d8..d5af764bda2 100644 --- a/leim/quail/ethiopic.el +++ b/leim/quail/ethiopic.el @@ -1,7 +1,8 @@ ;;; ethiopic.el --- Quail package for inputting Ethiopic characters -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1997, 1998 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. +;; Copyright (C) 1997, 1998, 1999, 2001 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: multilingual, input method, ethiopic diff --git a/leim/quail/greek.el b/leim/quail/greek.el index cd6e1560d7d..856c9fe098f 100644 --- a/leim/quail/greek.el +++ b/leim/quail/greek.el @@ -1,7 +1,9 @@ ;;; greek.el --- Quail package for inputting Greek -*-coding: iso-2022-7bit-*- -;; Copyright (C) 1997, 2001 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. +;; Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +;; Copyright (C) 1997, 2001 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: multilingual, input method, Greek diff --git a/leim/quail/hangul.el b/leim/quail/hangul.el index ee76c4e9af9..d82d49c3318 100644 --- a/leim/quail/hangul.el +++ b/leim/quail/hangul.el @@ -1,7 +1,9 @@ ;;; hangul.el --- Quail package for inputting Korean Hangul characters -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. +;; Copyright (C) 2002 Free Software Foundation, Inc. +;; Copyright (C) 1997 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: multilingual, input method, Korean, Hangul diff --git a/leim/quail/hangul3.el b/leim/quail/hangul3.el index 9931706c4a4..8cbfb061b9a 100644 --- a/leim/quail/hangul3.el +++ b/leim/quail/hangul3.el @@ -1,7 +1,9 @@ ;;; hangul3.el --- Quail package for inputting Korean Hangul characters -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. +;; Copyright (C) 1997, 1998, 2001 Free Software Foundation, Inc. +;; Copyright (C) 1997, 2002 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: multilingual, input method, Korean, Hangul diff --git a/leim/quail/hanja-jis.el b/leim/quail/hanja-jis.el index 59ca777769b..baf426bc94a 100644 --- a/leim/quail/hanja-jis.el +++ b/leim/quail/hanja-jis.el @@ -1,7 +1,8 @@ ;;; hanja-jis.el --- Quail package for inputting Korean Hanja (JISX0208) -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. +;; Copyright (C) 1997 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: multilingual, input method, Korean, Hangul diff --git a/leim/quail/hanja.el b/leim/quail/hanja.el index 27cc557f9f6..7108e3b02f7 100644 --- a/leim/quail/hanja.el +++ b/leim/quail/hanja.el @@ -1,7 +1,8 @@ ;;; hanja.el --- Quail-package for Korean Hanja (KSC5601) -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. +;; Copyright (C) 1997 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: multilingual, input method, Korean, Hanja diff --git a/leim/quail/hanja3.el b/leim/quail/hanja3.el index 230248b9bec..c2f67b4d09d 100644 --- a/leim/quail/hanja3.el +++ b/leim/quail/hanja3.el @@ -1,6 +1,6 @@ ;;; hanja3.el --- Quail-package for Korean Hanja (KSC5601) -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1997 Free Software Foundation, Inc. +;; Copyright (C) 1997, 1999, 2002 Free Software Foundation, Inc. ;; Author: Koaunghi Un <koanughi.un@zdv.uni-tuebingen.de> ;; Keywords: mule, quail, multilingual, input method, Korean, Hanja diff --git a/leim/quail/hebrew.el b/leim/quail/hebrew.el index eadabcb1df7..4193f59775f 100644 --- a/leim/quail/hebrew.el +++ b/leim/quail/hebrew.el @@ -1,7 +1,8 @@ ;;; hebrew.el --- Quail package for inputting Hebrew characters -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1998 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. +;; Copyright (C) 1999 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: mule, input method, Hebrew diff --git a/leim/quail/indian.el b/leim/quail/indian.el index 48a2e8cf559..fa2dd6d80bd 100644 --- a/leim/quail/indian.el +++ b/leim/quail/indian.el @@ -1,6 +1,6 @@ ;;; indian.el --- Quail packages for inputting Indian -;; Copyright (C) 2000, 2001 Free Software Foundation, Inc. +;; Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc. ;; Author: KAWABATA, Taichi <kawabata@m17n.org> diff --git a/leim/quail/ipa.el b/leim/quail/ipa.el index 32547793005..48ce2b4063f 100644 --- a/leim/quail/ipa.el +++ b/leim/quail/ipa.el @@ -1,7 +1,8 @@ ;;; ipa.el --- Quail package for inputting IPA characters -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. +;; Copyright (C) 1997 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: multilingual, input method, IPA diff --git a/leim/quail/japanese.el b/leim/quail/japanese.el index 09b005a7bb2..974a68c0449 100644 --- a/leim/quail/japanese.el +++ b/leim/quail/japanese.el @@ -1,7 +1,8 @@ ;;; japanese.el --- Quail package for inputting Japanese -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. +;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2005 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: multilingual, input method, Japanese diff --git a/leim/quail/lao.el b/leim/quail/lao.el index e28bc5fc1fc..09151735de0 100644 --- a/leim/quail/lao.el +++ b/leim/quail/lao.el @@ -1,8 +1,6 @@ ;;; lao.el --- Quail package for inputting Lao characters -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. -;; Copyright (C) 2004 +;; Copyright (C) 1997, 1999, 2004 ;; National Institute of Advanced Industrial Science and Technology (AIST) ;; Registration Number H14PRO021 diff --git a/leim/quail/latin-alt.el b/leim/quail/latin-alt.el index 50efdae1657..3b9dc0518ae 100644 --- a/leim/quail/latin-alt.el +++ b/leim/quail/latin-alt.el @@ -1,8 +1,9 @@ ;;; latin-alt.el --- Quail package for inputting various European characters -*-coding: utf-8;-*- -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. -;; Copyright (C) 2001, 2002 Free Software Foundation, Inc. +;; Copyright (C) 1997, 1998, 2001, 2002 Free Software Foundation, Inc. +;; Copyright (C) 1997, 1999 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: multilingual, input method, latin diff --git a/leim/quail/latin-ltx.el b/leim/quail/latin-ltx.el index 0284810b8eb..4bf9310abd7 100644 --- a/leim/quail/latin-ltx.el +++ b/leim/quail/latin-ltx.el @@ -1,8 +1,9 @@ ;;; latin-ltx.el --- Quail package for TeX-style input -*-coding: utf-8;-*- -;; Copyright (C) 2001, 2004 Free Software Foundation, Inc. -;; Copyright (C) 2001 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. +;; Copyright (C) 2001, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2001 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Author: TAKAHASHI Naoto <ntakahas@m17n.org> ;; Dave Love <fx@gnu.org> @@ -299,7 +300,7 @@ system, including many technical ones. Examples: ("\\'m" ?ḿ) ("\\'p" ?ṕ) ("\\'w" ?ẃ) - ("\\," ? ) + ("\\," ? ) ("\\." ?̇) ("\\.B" ?Ḃ) ("\\.D" ?Ḋ) @@ -960,6 +961,31 @@ system, including many technical ones. Examples: ("\\frq" ?›) ("\\flqq" ?\«) ("\\\"<" ?\«) ("\\frqq" ?\») ("\\\">" ?\») + + ("\\-" ?) ;; soft hyphen + + ("\\textmu" ?µ) + ("\\textfractionsolidus" ?⁄) + ("\\textbigcircle" ?⃝) + ("\\textmusicalnote" ?♪) + ("\\textdied" ?✝) + ("\\textcolonmonetary" ?₡) + ("\\textwon" ?₩) + ("\\textnaira" ?₦) + ("\\textpeso" ?₱) + ("\\textlira" ?₤) + ("\\textrecipe" ?℞) + ("\\textinterrobang" ?‽) + ("\\textpertenthousand" ?‱) + ("\\textbaht" ?฿) + ("\\textnumero" ?№) + ("\\textdiscount" ?⁒) + ("\\textestimated" ?℮) + ("\\textopenbullet" ?◦) + ("\\textlquill" ?⁅) + ("\\textrquill" ?⁆) + ("\\textcircledP" ?℗) + ("\\textreferencemark" ?※) ) ;; arch-tag: 3daae613-2c53-446e-a0a1-ee2e1ebed15f diff --git a/leim/quail/latin-post.el b/leim/quail/latin-post.el index 553962aef8e..1f4d2414a76 100644 --- a/leim/quail/latin-post.el +++ b/leim/quail/latin-post.el @@ -1,8 +1,9 @@ ;;; latin-post.el --- Quail packages for inputting various European characters -*-coding: utf-8;-*- -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. -;; Copyright (C) 2001, 2002 Free Software Foundation. +;; Copyright (C) 1997, 1998, 2001, 2002 Free Software Foundation, Inc. +;; Copyright (C) 1997 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Copyright (C) 2003 ;; National Institute of Advanced Industrial Science and Technology (AIST) ;; Registration Number H13PRO009 diff --git a/leim/quail/latin-pre.el b/leim/quail/latin-pre.el index 87389ab6476..80690c8ce1e 100644 --- a/leim/quail/latin-pre.el +++ b/leim/quail/latin-pre.el @@ -1,8 +1,10 @@ ;;; latin-pre.el --- Quail packages for inputting various European characters -*-coding: utf-8;-*- -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. -;; Copyright (C) 2000, 2002 Free Software Foundation, Inc. +;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 +;; Free Software Foundation, Inc. +;; Copyright (C) 1997, 1999, 2005 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: mule, multilingual, latin, input method diff --git a/leim/quail/lrt.el b/leim/quail/lrt.el index e1ea6ed8d87..7c994944f1f 100644 --- a/leim/quail/lrt.el +++ b/leim/quail/lrt.el @@ -1,7 +1,9 @@ ;;; lrt.el --- Quail package for inputting Lao characters by LRT method -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. +;; Copyright (C) 1998 Free Software Foundation, Inc. +;; Copyright (C) 1997, 1999 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: multilingual, input method, Lao, LRT. diff --git a/leim/quail/py-punct.el b/leim/quail/py-punct.el index a75b453bdcb..b07530963ed 100644 --- a/leim/quail/py-punct.el +++ b/leim/quail/py-punct.el @@ -1,8 +1,9 @@ ;;; py-punct.el --- Quail packages for Chinese (pinyin + extra symbols) -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. ;; Copyright (C) 2001 Free Software Foundation, Inc. +;; Copyright (C) 1997, 2000 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Author: Ken'ichi HANDA <handa@etl.go.jp> diff --git a/leim/quail/pypunct-b5.el b/leim/quail/pypunct-b5.el index 0f49af9ef61..ee053c67f13 100644 --- a/leim/quail/pypunct-b5.el +++ b/leim/quail/pypunct-b5.el @@ -1,7 +1,8 @@ ;;; pypunct-b5.el --- Quail packages for Chinese (pinyin + extra symbols) -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. +;; Copyright (C) 1997, 2000 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Author: Ken'ichi HANDA <handa@etl.go.jp> diff --git a/leim/quail/slovak.el b/leim/quail/slovak.el index 680f4ef593d..d8114842522 100644 --- a/leim/quail/slovak.el +++ b/leim/quail/slovak.el @@ -1,6 +1,6 @@ ;;; slovak.el --- Quail package for inputting Slovak -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1998, 2001 Free Software Foundation. +;; Copyright (C) 1998, 2001 Free Software Foundation, Inc. ;; Authors: Tibor ,B)(Bimko <tibor.simko@fmph.uniba.sk> ;; Milan Zamazal <pdm@zamazal.org> diff --git a/leim/quail/symbol-ksc.el b/leim/quail/symbol-ksc.el index 39d75ae9c92..385fe947696 100644 --- a/leim/quail/symbol-ksc.el +++ b/leim/quail/symbol-ksc.el @@ -1,7 +1,9 @@ ;;; symbol-ksc.el --- Quail-package for Korean Symbol (KSC5601) -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. +;; Copyright (C) 1997, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1997, 1998 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: multilingual, input method, Korean, Hangul @@ -42,10 +44,10 @@ $(C!<(Bunit$(C!=4\@'(B $(C!<(Bfrac$(C!=:P<v(B $(C!<(Btextline$(C!=!)!*!+!,!-(B $(C!<(Bwn$(C!="_!<(Bks$(C!="^!<(BNo$(C!="`!<"a!="a(B $(C!<(Bdag$(C!="S(B $(C!<(Bddag$(C!="T!<(Bpercent$(C!="6(B $(C!<(Bam$(C!="c!<(Bpm$(C!="d!<"b!="b!<(BTel$(C!="e!<(Bwon$(C!=#\(B $(C!<(Byen$(C!=!M(B $(C!<(Bpound$(C!=!L(B - $(C!<(BEng$(C!=#A#B#C!&(B $(C!<(Benum$(C!=#0#1#2!&(B $(C!<(BRuss$(C!=,",#,$!&!<(BGreek$(C!=%A%B%C!&(B + $(C!<(BEng$(C!=#A#B#C!&(B $(C!<(Benum$(C!=#0#1#2!&(B $(C!<(BRuss$(C!=,!,",#!&!<(BGreek$(C!=%A%B%C!&(B $(C!<(Beng$(C!=#a#b#c!&(B $(C!<(Beasc$(C!=?5>n(BASCII$(C!<(Bruss$(C!=,Q,R,S!&!<(Bgreek$(C!=%a%b%c!&(B - $(C!<(BRom$(C!=%0%1%2!&(B $(C!<(BScan$(C!=("(#($!&(B $(C!<(Bhira$(C!=*"*#*$(B - $(C!<(Brom$(C!=%!%"%#!&(B $(C!<(Bscan$(C!=)")#)$!&(B $(C!<(Bkata$(C!=+"+#+$(B + $(C!<(BRom$(C!=%0%1%2!&(B $(C!<(BScan$(C!=(!("(#!&(B $(C!<(Bhira$(C!=*!*"*#(B + $(C!<(Brom$(C!=%!%"%#!&(B $(C!<(Bscan$(C!=)!)")#!&(B $(C!<(Bkata$(C!=+!+"+#(B $(C!<(Bojaso$(C!=(1!-(>!<(Bpjaso$(C!=)1!-)>!<(Boeng$(C!=(M!-(f!<(Bpeng$(C!=)M!-)f(B $(C!<(Bogana$(C!=(?!-(L!<(Bpgana$(C!=)?!-)L!<(Bonum$(C!=(g!-(u!<(Bpnum$(C!=)g!-)u(B $(C!<@Z<R!=(B2$(C9z=D(B + $(C$U(B(S) $(C$o(B(t_) $(C$q(B(D) $(C$p(B(DD) $(C$a(B(aD) $(C$v(B(_d) $(C$u(B(G) $(C$}(B(uk)") @@ -53,10 +55,10 @@ (quail-define-rules ("(" "$(C!2!4!6!8!:!<(B") (")" "$(C!3!5!7!9!;!=(B") - ("math" "$(C!>!?!@!A!B!C!D!E!P!Q!R!S!T!U!V!k!l!m!n!o!p!q!r!s!t!u!v!w!x!y!z!{!|!}!~"""#"$"1"2"3(B") - ("pic" "$(C!Y![!Z!\!]!^!_!`!a!b!c!d!e"7"8"9":";"<"=">"?"@"A"B"C"D"E"F"G"H"I"J"K"L"M"N"O"P"Q"4(B") + ("math" "$(C!>!?!@!A!B!C!D!E!P!Q!R!S!T!U!V!k!l!m!n!o!p!q!r!s!t!u!v!w!x!y!z!{!|!}!~"!"""#"$"1"2"3(B") + ("pic" "$(C!Y!Z![!\!]!^!_!`!a!b!c!d!e"7"8"9":";"<"=">"?"@"A"B"C"D"E"F"G"H"I"J"K"L"M"N"O"P"Q"4(B") ("arrow" "$(C!f!g!h!i!j"U"V"W"X"Y(B") - ("music" "$(C"["Z"\"](B") + ("music" "$(C"Z"["\"](B") ("won" "$(C#\(B") ("yen" "$(C!M(B") ("pound" "$(C!L(B") @@ -78,7 +80,7 @@ ("am" "$(C"c(B") ("pm" "$(C"d(B") ("Tel" "$(C"e(B") - ("easc" "$(C#"###$#%#&#'#(#)#*#+#,#-#.#/#:#;#<#=#>#?#@#[#]#^#_#`#{#|#}#~(B") + ("easc" "$(C#!#"###$#%#&#'#(#)#*#+#,#-#.#/#:#;#<#=#>#?#@#[#]#^#_#`#{#|#}#~(B") ("enum" "$(C#0#1#2#3#4#5#6#7#8#9(B") ("Eng" "$(C#A#B#C#D#E#F#G#H#I#J#K#L#M#N#O#P#Q#R#S#T#U#V#W#X#Y#Z(B") ("eng" "$(C#a#b#c#d#e#f#g#h#i#j#k#l#m#n#o#p#q#r#s#t#u#v#w#x#y#z(B") @@ -179,24 +181,24 @@ ("rom" "$(C%!%"%#%$%%%&%'%(%)%*(B") ("Greek" "$(C%A%B%C%D%E%F%G%H%I%J%K%L%M%N%O%P%Q%R%S%T%U%V%W%X(B") ("greek" "$(C%a%b%c%d%e%f%g%h%i%j%k%l%m%n%o%p%q%r%s%t%u%v%w%x(B") - ("line" "$(C&"&#&$&%&&&'&(&)&*&+&,&-&.&/&0&1&2&3&4&5&6&7&8&9&:&;&<&=&>&?&@&A&B&C&D&E&F&G&H&I&J&K&L&M&N&O&P&Q&R&S&T&U&V&W&X&Y&[&Z&\&]&^&_&`&a&b&c&d(B") - ("unit" "$(C'"'#'$'%'&'''(')'*'+','-'.'/'0'1'2'3'4'5'6'7'8'9':';'<'='>'?'@'A'B'C'D'E'F'G'H'I'J'K'L'M'N'O'P'Q'R'S'T'U'V'W'X'Y'['Z'\']'^'_'`'a'b'c'd'e'f'g'h'i'j'k'l'm'n'o(B") - ("Scan" "$(C("(#($(&((()(*(+(,(-(.(/(B") + ("line" "$(C&!&"&#&$&%&&&'&(&)&*&+&,&-&.&/&0&1&2&3&4&5&6&7&8&9&:&;&<&=&>&?&@&A&B&C&D&E&F&G&H&I&J&K&L&M&N&O&P&Q&R&S&T&U&V&W&X&Y&Z&[&\&]&^&_&`&a&b&c&d(B") + ("unit" "$(C'!'"'#'$'%'&'''(')'*'+','-'.'/'0'1'2'3'4'5'6'7'8'9':';'<'='>'?'@'A'B'C'D'E'F'G'H'I'J'K'L'M'N'O'P'Q'R'S'T'U'V'W'X'Y'Z'['\']'^'_'`'a'b'c'd'e'f'g'h'i'j'k'l'm'n'o(B") + ("Scan" "$(C(!("(#($(&((()(*(+(,(-(.(/(B") ("ojaso" "$(C(1(2(3(4(5(6(7(8(9(:(;(<(=(>(B") ("ogana" "$(C(?(@(A(B(C(D(E(F(G(H(I(J(K(L(B") ("oeng" "$(C(M(N(O(P(Q(R(S(T(U(V(W(X(Y(Z([(\(](^(_(`(a(b(c(d(e(f(B") ("onum" "$(C(g(h(i(j(k(l(m(n(o(p(q(r(s(t(u(B") ("frac" "$(C(v(w(x(y(z({(|(}(~(B") - ("scan" "$(C)")#)$)%)&)')()))*)+),)-).)/)0(B") + ("scan" "$(C)!)")#)$)%)&)')()))*)+),)-).)/)0(B") ("pjaso" "$(C)1)2)3)4)5)6)7)8)9):);)<)=)>(B>") ("pgana" "$(C)?)@)A)B)C)D)E)F)G)H)I)J)K)L(B") ("peng" "$(C)M)N)O)P)Q)R)S)T)U)V)W)X)Y)Z)[)\)])^)_)`)a)b)c)d)e)f(B") ("pnum" "$(C)g)h)i)j)k)l)m)n)o)p)q)r)s)t)u(B") ("index" "$(C)v)w)x)y)z){)|)})~(B") - ("hira" "$(C*"*#*$*%*&*'*(*)***+*,*-*.*/*0*1*2*3*4*5*6*7*8*9*:*;*<*=*>*?*@*A*B*C*D*E*F*G*H*I*J*K*L*M*N*O*P*Q*R*S*T*U*V*W*X*Y*[*Z*\*]*^*_*`*a*b*c*d*e*f*g*h*i*j*k*l*m*n*o*p*q*r*s(B") - ("kata" "$(C+"+#+$+%+&+'+(+)+*+++,+-+.+/+0+1+2+3+4+5+6+7+8+9+:+;+<+=+>+?+@+A+B+C+D+E+F+G+H+I+J+K+L+M+N+O+P+Q+R+S+T+U+V+W+X+Y+[+Z+\+]+^+_+`+a+b+c+d+e+f+g+h+i+j+k+l+m+n+o+p+q+r+s+t+u+v(B") - ("Russ" "$(C,",#,$,%,&,',(,),*,+,,,-,.,/,0,1,2,3,4,5,6,7,8,9,:,;,<,=,>,?,@,A(B") - ("russ" "$(C,Q,R,S,T,U,V,W,X,Y,[,Z,\,],^,_,`,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q(B")) + ("hira" "$(C*!*"*#*$*%*&*'*(*)***+*,*-*.*/*0*1*2*3*4*5*6*7*8*9*:*;*<*=*>*?*@*A*B*C*D*E*F*G*H*I*J*K*L*M*N*O*P*Q*R*S*T*U*V*W*X*Y*Z*[*\*]*^*_*`*a*b*c*d*e*f*g*h*i*j*k*l*m*n*o*p*q*r*s(B") + ("kata" "$(C+!+"+#+$+%+&+'+(+)+*+++,+-+.+/+0+1+2+3+4+5+6+7+8+9+:+;+<+=+>+?+@+A+B+C+D+E+F+G+H+I+J+K+L+M+N+O+P+Q+R+S+T+U+V+W+X+Y+Z+[+\+]+^+_+`+a+b+c+d+e+f+g+h+i+j+k+l+m+n+o+p+q+r+s+t+u+v(B") + ("Russ" "$(C,!,",#,$,%,&,',(,),*,+,,,-,.,/,0,1,2,3,4,5,6,7,8,9,:,;,<,=,>,?,@,A(B") + ("russ" "$(C,Q,R,S,T,U,V,W,X,Y,Z,[,\,],^,_,`,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q(B")) ;;; arch-tag: a77d89b9-9847-41d2-8e3a-7cce841ebb3b ;;; symbol-ksc.el ends here diff --git a/leim/quail/thai.el b/leim/quail/thai.el index b2c5b2f3cc2..f27aab7acb0 100644 --- a/leim/quail/thai.el +++ b/leim/quail/thai.el @@ -1,8 +1,6 @@ ;;; thai.el --- Quail package for inputting Thai characters -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. -;; Copyright (C) 2005 +;; Copyright (C) 1995, 1997, 1999, 2005 ;; National Institute of Advanced Industrial Science and Technology (AIST) ;; Registration Number H14PRO021 diff --git a/leim/quail/tibetan.el b/leim/quail/tibetan.el index 64d456d2636..e9d998525c3 100644 --- a/leim/quail/tibetan.el +++ b/leim/quail/tibetan.el @@ -1,7 +1,9 @@ ;;; tibetan.el --- Quail package for inputting Tibetan characters -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1995 Free Software Foundation, Inc. -;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. +;; Copyright (C) 1995 Free Software Foundation, Inc. +;; Copyright (C) 1995, 1998, 1999, 2000 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: multilingual, input method, Tibetan diff --git a/leim/quail/uni-input.el b/leim/quail/uni-input.el index 9dcb51c45b3..d623c333a06 100644 --- a/leim/quail/uni-input.el +++ b/leim/quail/uni-input.el @@ -1,6 +1,9 @@ ;;; uni-input.el --- Hex Unicode input method -;; Copyright (C) 2001, 2002 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. +;; Copyright (C) 2004 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Author: Dave Love <fx@gnu.org> ;; Keywords: i18n @@ -108,7 +111,6 @@ While this input method is active, the variable (quail-delete-overlays) (if (eq (selected-window) (minibuffer-window)) (add-hook 'minibuffer-exit-hook 'quail-exit-from-minibuffer)) - (add-hook 'kill-buffer-hook 'quail-kill-guidance-buf nil t) (set (make-local-variable 'input-method-function) 'ucs-input-method))) diff --git a/leim/quail/viqr.el b/leim/quail/viqr.el index a5181528639..0a7acf42c70 100644 --- a/leim/quail/viqr.el +++ b/leim/quail/viqr.el @@ -1,7 +1,8 @@ ;;; viqr.el --- Quail packages for inputting Vietnamese with VIQR system -*-coding: iso-2022-7bit;-*- -;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. -;; Licensed to the Free Software Foundation. +;; Copyright (C) 1997 +;; National Institute of Advanced Industrial Science and Technology (AIST) +;; Registration Number H14PRO021 ;; Keywords: multilingual, input method, latin diff --git a/leim/quail/vntelex.el b/leim/quail/vntelex.el index 7cd0ed438c1..e2ff88bc25f 100644 --- a/leim/quail/vntelex.el +++ b/leim/quail/vntelex.el @@ -1,6 +1,6 @@ ;;; vntelex.el --- Quail package for Vietnamese by Telex method -;; Copyright (C) 2001, 2002 Free Software Foundation. +;; Copyright (C) 2001, 2002 Free Software Foundation, Inc. ;; Author: Werner Lemberg <wl@gnu.org> ;; Keywords: multilingual, input method, Vietnamese |