Some fixes to follow lisp coding conventions and typo fixes.
authorPavel Janík <Pavel@Janik.cz>
Mon, 16 Jul 2001 20:22:24 +0000 (20:22 +0000)
committerPavel Janík <Pavel@Janik.cz>
Mon, 16 Jul 2001 20:22:24 +0000 (20:22 +0000)
29 files changed:
leim/ChangeLog
leim/ja-dic/ja-dic.el
leim/quail/cyril-jis.el
leim/quail/cyrillic.el
leim/quail/czech.el
leim/quail/devanagari.el
leim/quail/ethiopic.el
leim/quail/greek.el
leim/quail/hangul.el
leim/quail/hangul3.el
leim/quail/hanja-jis.el
leim/quail/hanja.el
leim/quail/hanja3.el
leim/quail/hebrew.el
leim/quail/ipa.el
leim/quail/japanese.el
leim/quail/lao.el
leim/quail/latin-alt.el
leim/quail/latin-ltx.el
leim/quail/latin-post.el
leim/quail/latin-pre.el
leim/quail/lrt.el
leim/quail/py-punct.el
leim/quail/pypunct-b5.el
leim/quail/slovak.el
leim/quail/symbol-ksc.el
leim/quail/thai.el
leim/quail/tibetan.el
leim/quail/viqr.el

index 9ca242f..e8a7ff6 100644 (file)
@@ -1,3 +1,16 @@
+2001-07-16  Pavel Jan\e,Bm\e(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.
index 93306be..5624976 100644 (file)
@@ -1,9 +1,9 @@
-;; ja-dic.el -- dictionary for Japanese input method
+;;; ja-dic.el --- dictionary for Japanese input method
 ;;     Generated by the command `skkdic-convert'
 ;;     Date: Sat Dec 16 09:09:04 2000
 ;;     Original SKK dictionary file: SKK-JISYO.L
 
-;;; Comment:
+;;; Commentary:
 
 ;; Do byte-compile this file again after any modification.
 
@@ -20,6 +20,8 @@
 ;; Yukiyoshi Kameyama, Akihiko Sasaki, Dai Ando, Junichi Okukawa, 
 ;; Katsushi Sato and Nobuhiro Yamagishi
 ;; 
+;; This file is part of GNU Emacs.
+;;
 ;; This dictionary is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either versions 2, or (at your option)
 ;;
 (provide 'ja-dic)
 
-;; ja-dic.el ends here
+;;; ja-dic.el ends here
index c17c9c7..5196b4c 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/cyril-jis.el -- Quail package for inputting JISX0208 Cyrillic letters
+;;; cyril-jis.el --- Quail package for inputting JISX0208 Cyrillic letters
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
 ;; Local Variables:
 ;; buffer-file-coding-system: iso-2022-7bit
 ;; End:
+
+;;; cyril-jis.el ends here
index 1cd7f08..efe713f 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/cyrillic.el -- Quail package for inputting Cyrillic characters
+;;; cyrillic.el --- Quail package for inputting Cyrillic characters
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -22,6 +22,8 @@
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
@@ -838,10 +840,8 @@ The only difference with cyrillic-translit is that \"sht\" translates as
  ("/I" ?\e,L&\e(B) ("/J" ?\e,L(\e(B) ("/L" ?\e,L)\e(B) ("/N" ?\e,L*\e(B) ("/Z" ?\e,L/\e(B)
 )
 
-
-
-
-
 ;; Local Variables:
 ;; buffer-file-coding-system: iso-2022-7bit
 ;; End:
+
+;;; cyrillic.el ends here
index 666a9c0..15fd877 100644 (file)
@@ -1,9 +1,9 @@
-;;; quail/czech.el -- Quail package for inputting Czech
+;;; czech.el --- Quail package for inputting Czech
 
 ;; Copyright (C) 1998, 2001 Free Software Foundation.
 
 ;; Author: Milan Zamazal <pdm@zamazal.org>
-;; Maintainer: Pavel Jan\e,Al\e(Bk <Pavel@Janik.cz>
+;; Maintainer: Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
 ;; Keywords: multilingual, input method, Czech
 
 ;; This file is part of GNU Emacs.
@@ -566,3 +566,5 @@ All other keys are the same as on standard US keyboard."
  ([kp-9] ?9)
  ([kp-0] ?0)
  ([kp-add] ?+))
+
+;;; czech.el ends here
index 9d840b9..8f4ac00 100644 (file)
@@ -1,4 +1,4 @@
-;; quail/devanagari.el -- Quail packages for inputting Devanagari
+;;; devanagari.el --- Quail packages for inputting Devanagari
 
 ;; Copyright (C) 1997 Free Software Foundation, Inc.
 
@@ -667,3 +667,5 @@ Specials   :   Anuswar       M  \e$(5!"\e(B     Visarg        H  \e$(5!#\e(B
                      )
 
 (devanagari-hindi-transliteration-quail-define-rules)
+
+;;; devanagari.el ends here
index 3b01061..9295704 100644 (file)
@@ -1,4 +1,4 @@
-;; quail/ethiopic.el --- Quail package for inputting Ethiopic characters
+;;ethiopic.el --- Quail package for inputting Ethiopic characters
 
 ;; Copyright (C) 1997, 1998 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -24,6 +24,8 @@
 
 ;; Author: TAKAHASHI Naoto <ntakahas@etl.go.jp>
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
@@ -1144,4 +1146,4 @@ C-' or `M-x ethio-gemination'
                 (if (ethio-prefer-amharic-p) ?\e$(3"c\e(B ?\e$(3"f\e(B)
                 "ethiopic"))
 
-;;; quail/ethiopic.el ends here
+;;; ethiopic.el ends here
index aa81565..ea20b83 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/greek.el -- Quail package for inputting Greek
+;;; greek.el --- Quail package for inputting Greek
 
 ;; Copyright (C) 1997, 2001 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -22,6 +22,8 @@
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
@@ -904,3 +906,5 @@ e.g.
  ("Y:" ?\e,F[\e(B)
  ("i:;" ?\e,F@\e(B)
  ("y:;" ?\e,F`\e(B))
+
+;;; greek.el ends here
index 08447ba..044d12b 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/hangul.el -- Quail package for inputting Korean Hangul characters
+;;; hangul.el --- Quail package for inputting Korean Hangul characters
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -22,6 +22,8 @@
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
@@ -2605,3 +2607,5 @@ For instance, typing \"S\" followed by TAB will tell you
  ("SA" ?\e$(C!J\e(B)
  ("SC/"        ?\e$(C!K\e(B)
  ("SF" ?\e$(C"5\e(B))
+
+;;; hangul.el ends here
index 57fcc0b..974c755 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/hangul3.el -- Quail package for inputting Korean Hangul characters
+;;; hangul3.el --- Quail package for inputting Korean Hangul characters
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -22,6 +22,8 @@
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
  ("md3" ?\e$(CH|\e(B)
  ("mdq" ?\e$(CH}\e(B)
  ("mda" ?\e$(CH~\e(B))
+
+;;; hangul3.el ends here
index 1814d2e..8659816 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/hanja-jis.el -- Quail package for inputting Korean Hanja (JISX0208)
+;;; hanja-jis.el --- Quail package for inputting Korean Hanja (JISX0208)
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -22,6 +22,8 @@
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
  ("gml"        "\e$B4n4r4u5)5:5>I1Q%RzS)S`XAXZY&Zk[']8_f_g_t`!`:c6f<nZrF\e(B")
  ("glf"        "\e$B5Merk#pvs\\e(B")
  ("unknown"    "\e$B4#<5DNFJFdFuJ=KsL]QeRIRpS&S9SuS{T*T+T8T:T>TBTCTKTNTQTWT\T_UNU~V&V,V-V.V/V0V2V4V8VNW;WjWnWpY0YKY^Z1Zs[=[b[n\)\-\.\/\0\1\O\S\j\n\o\p\q\x]&]6]B]i^<^L^c_&_1`<a:a<a>b<bBbXbmbpbsc%c5cNcdc}d&d1d=dIdLdYdddfdhdte9eaebemenevf$g3g\h4h6hHhMhWhhiFi[ibj,jQj^jmk\lCmZmhmimzn%n}o'oZo]p#p-pXp]p`q;qIqRr;r@rGrOrZr_rer~s#s%\e(B"))
+
+;;; hanja-jis.el ends here
index 9cad9fc..861cd22 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/hanja.el --- Quail-package for Korean Hanja (KSC5601)
+;;; hanja.el --- Quail-package for Korean Hanja (KSC5601)
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -22,6 +22,8 @@
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
  ("gmd"        "\e$(C}i\e(B")
  ("gml"        "\e$(C}j}k}l}m}n}o}p}q}r}s}t}u}v}w}x}y}z}{}|}}\e(B")
  ("glf"        "\e$(C}~\e(B"))
+
+;;; hanja.el ends here
index 1276106..b24c612 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/hanja3.el --- Quail-package for Korean Hanja (KSC5601)
+;;; hanja3.el --- Quail-package for Korean Hanja (KSC5601)
 
 ;; Copyright (C) 1997 Free Software Foundation, Inc.
 
@@ -22,6 +22,8 @@
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
  ("mga" "\e$(C}i\e(B")
  ("m8" "\e$(C}j}k}l}m}n}o}p}q}r}s}t}u}v}w}x}y}z}{}|}}\e(B")
  ("mdw" "\e$(C}~\e(B"))
+
+;;; hanja3.el ends here
index c7a998d..9e6be10 100644 (file)
@@ -1,4 +1,4 @@
-;; Quail package for inputting Hebrew characters.
+;;; hebrew.el --- Quail package for inputting Hebrew characters
 
 ;; Copyright (C) 1998 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
+;;; Code:
+
 (require 'quail)
 
 (quail-define-package
@@ -69,5 +73,6 @@ Hebrew letters are assigned to lowercases.
  ("," ?\e,Hz\e(B)
  ("." ?\e,Hu\e(B)
  ("/" ?.)
- ("'" ?,)
- )
+ ("'" ?,))
+
+;;; hebrew.el ends here
index 41a5f27..3192890 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/ipa.el -- Quail package for inputting IPA characters
+;;; ipa.el --- Quail package for inputting IPA characters
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -22,6 +22,8 @@
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
@@ -105,3 +107,5 @@ Upside-down characters are obtained by a preceding slash (/)."
  ("'" ?\e,0p\e(B)
  ("`" ?\e,0q\e(B)
  (":" ?\e,0r\e(B))
+
+;;; ipa.el ends here
index f9f2837..6cf25ae 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/japanese.el --- Quail package for inputting Japanese
+;;; japanese.el --- Quail package for inputting Japanese
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -22,6 +22,8 @@
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
@@ -541,3 +543,4 @@ qq: toggle between this input method and the input method `japanese-ascii'.
                          (vector (japanese-katakana (aref trans 0))))
                         (t trans)))))
 
+;;; japanese.el ends here
index 955420a..cb39f66 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/lao.el --- Quail package for inputting Lao characters
+;;; lao.el --- Quail package for inputting Lao characters
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -22,6 +22,8 @@
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
     (v-state (lao-vowel-key-alist . t-state))
     (t-state lao-tone-key-alist))))
 
-;;; quail/lao.el ends here
+;;; lao.el ends here
index 2c25488..7145ccc 100644 (file)
@@ -1,4 +1,4 @@
-;; Quail packages for inputting various European characters.
+;;; latin-alt.el --- Quail packages for inputting various European characters
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
 
 ;; Author: TAKAHASHI Naoto <ntakahas@etl.go.jp>
 
+;;; Commentary:
+
+;;; Code:
+
 (require 'quail)
 
 (quail-define-package
@@ -1524,3 +1528,5 @@ Doubling the postfix separates the letter and postfix: e.g. a^^ -> a^
  ("U^^" ["U^"])
  ("u^^" ["u^"])
  )
+
+;;; latin-alt.el ends here
index aaab74b..4fe3d94 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/latin-ltx.el -- Quail package for TeX-style input -*-coding: iso-2022-7bit-*-
+;;; latin-ltx.el --- Quail package for TeX-style input -*-coding: iso-2022-7bit-*-
 
 ;; Copyright (C) 2001 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -23,6 +23,8 @@
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
@@ -900,3 +902,5 @@ system, including many technical ones.  Examples:
  ("\\mu" ?\e$,1'<\e(B)
  ("\\rho" ?\e$,1'A\e(B)
 )
+
+;;; latin-ltx.el ends here
index 725ad58..4479838 100644 (file)
@@ -1,4 +1,4 @@
-;; Quail packages for inputting various European characters.
+;;; latin-post.el --- Quail packages for inputting various European characters
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
 
 ;; Author: TAKAHASHI Naoto <ntakahas@etl.go.jp>
 
+;;; Commentary:
+
+;;; Code:
+
 (require 'quail)
 
 (quail-define-package
@@ -2121,3 +2125,5 @@ Dead accent is right to \e,Af\e(B." nil t t t t nil nil nil nil nil t)
  (">" ?V)
  ("?" ?Z)
  )
+
+;;; latin-post.el ends here
index 222dbb8..e75de68 100644 (file)
@@ -1,4 +1,4 @@
-;;; latin-pre.el -- Quail packages for inputting various European characters.
+;;; latin-pre.el --- Quail packages for inputting various European characters
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -31,8 +31,8 @@
 ;;                 by R.F. Smith <rsmith@xs4all.nl>
 ;;
 ;; polish-slash:
-;;  Author:    W\e,B3\e(Bodek Bzyl <matwb@univ.gda.pl>
-;;  Maintainer:        W\e,B3\e(Bodek Bzyl <matwb@univ.gda.pl>
+;; Author: W\e,B3\e(Bodek Bzyl <matwb@univ.gda.pl>
+;; Maintainer: W\e,B3\e(Bodek Bzyl <matwb@univ.gda.pl>
 ;;
 ;; latin-[89]-prefix: Dave Love <fx@gnu.org>
 
@@ -62,7 +62,7 @@
    symbol    |   ^    | ^r -> \e,A.\e(B  ^c -> \e,A)\e(B  ^1 -> \e,A9\e(B  ^2 -> \e,A2\e(B  ^3 -> \e,A3\e(B
 " nil t nil nil nil nil nil nil nil nil t)
 
-;; Fixme: should we have non-break space somehow?  Is so, how?
+;; Fixme: should we have non-break space somehow?  If so, how?
 (quail-define-rules
  ("'A" ?\e,AA\e(B)
  ("'E" ?\e,AI\e(B)
@@ -979,3 +979,5 @@ For example, the character named `aogonek' is obtained by `/a'."
  ("~$" ?\e,_#\e(B)
  ("^r" ?\e,_.\e(B)
  ("^c" ?\e,_)\e(B))
+
+;;; latin-pre.el ends here
index bdc1cc7..4348d87 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/lrt.el --- Quail package for inputting Lao characters by LRT method
+;;; lrt.el --- Quail package for inputting Lao characters by LRT method
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -22,6 +22,8 @@
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
@@ -74,4 +76,4 @@
              lao-transcription-tone-alist)
     (t-state lao-transcription-tone-alist))))
 
-;;; quail/lrt.el ends here
+;;; lrt.el ends here
index b903f21..a2f9c7f 100644 (file)
@@ -1,4 +1,4 @@
-;; quail/py-punct.el -- Quail packages for Chinese (pinyin + extra symbols)
+;;; py-punct.el --- Quail packages for Chinese (pinyin + extra symbols)
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
+;;; Code:
+
 (require 'quail)
 
 (load "quail/PY")
@@ -65,3 +69,5 @@ For instance, typing `v' and `%' insert `\e$A#%\e(B'.
 ")
 
 (quail-defrule "v" (nth 2 (assoc "chinese-punct-b5" quail-package-alist)))
+
+;;; py-punct.el ends here
index 2863a94..e07593e 100644 (file)
@@ -1,4 +1,4 @@
-;; quail/pypunct-b5.el -- Quail packages for Chinese (pinyin + extra symbols)
+;;; pypunct-b5.el --- Quail packages for Chinese (pinyin + extra symbols)
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
+;;; Code:
+
 (require 'quail)
 
 (load "quail/PY-b5")
@@ -48,3 +52,5 @@ For instance, typing `v' and `%' insert `\e$(0"h\e(B'.
        (nth 2 (assoc "chinese-py-b5" quail-package-alist)))
 
 (quail-defrule "v" (nth 2 (assoc "chinese-punct-b5" quail-package-alist)))
+
+;;; pypunct-b5.el ends here
index b92dba6..18c7dd5 100644 (file)
@@ -1,10 +1,10 @@
-;;; quail/slovak.el -- Quail package for inputting Slovak
+;;; slovak.el --- Quail package for inputting Slovak
 
 ;; Copyright (C) 1998, 2001 Free Software Foundation.
 
-;; Authors:    Tibor \e,B)\e(Bimko <tibor.simko@fmph.uniba.sk>,
-;;             Milan Zamazal <pdm@zamazal.org>
-;; Maintainer: Pavel Jan\e,Al\e(Bk <Pavel@Janik.cz>
+;; Authors: Tibor \e,B)\e(Bimko <tibor.simko@fmph.uniba.sk>
+;;     Milan Zamazal <pdm@zamazal.org>
+;; Maintainer: Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
 ;; Keywords: multilingual, input method, Slovak
 
 ;; This file is part of GNU Emacs.
@@ -34,7 +34,6 @@
 
 (require 'quail)
 
-
 (quail-define-package
  "slovak" "Slovak" "SK" t
  "Standard Slovak keyboard."
@@ -477,3 +476,5 @@ All other keys are the same as on standard US keyboard."
  ([kp-9] ?9)
  ([kp-0] ?0)
  ([kp-add] ?+))
+
+;;; slovak.el ends here
index abacb4d..5ccf9dd 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/symbol-ksc.el --- Quail-package for Korean Symbol (KSC5601)
+;;; symbol-ksc.el --- Quail-package for Korean Symbol (KSC5601)
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -26,6 +26,7 @@
 ;;; 94.11.04   Updated for Mule Ver.2.1 (koaunghi.un@zdv.uni-tuebingen.de)
 ;;; 96.09.23   Updated for emacs-19.33-beta (koaunghi.un@zdv.uni-tuebingen.de)
 
+;;; Commentary:
 
 ;;; Code:
 
  ("kata"       "\e$(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\e(B")
  ("Russ"       "\e$(C,",#,$,%,&,',(,),*,+,,,-,.,/,0,1,2,3,4,5,6,7,8,9,:,;,<,=,>,?,@,A\e(B")
  ("russ"       "\e$(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\e(B"))
+
+;;; symbol-ksc.el ends here
index c6b5164..ec7bffa 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/thai.el --- Quail package for inputting Thai characters
+;;; thai.el --- Quail package for inputting Thai characters
 
 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -22,6 +22,8 @@
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
@@ -125,3 +127,5 @@ The difference from the ordinal Thai keyboard:
     "\e,Ta\e(B" "\e,Tg\e(B" "\e,TM\e(B" "\e,T7\e(B" "\e,TC\e(B" "\e,T4\e(B" "\e,TK\e(B" "\e,T5\e(B"    ; p .. w
     "\e,T;\e(B" "\e,Th\e(B" "\e,T:\e(B" "\e,TO\e(B" "\e,Tm\e(B" "\e,TF\e(B" "\e,T%\e(B" 0    ; x .. DEL
     ]))
+
+;;; thai.el ends here
index 83b2fb8..75ca75e 100644 (file)
@@ -1,4 +1,4 @@
-;;; quail/tibetan.el -- Quail package for inputting Tibetan characters
+;;; tibetan.el --- Quail package for inputting Tibetan characters
 
 ;; Copyright (C) 1995 Free Software Foundation, Inc.
 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
@@ -29,6 +29,8 @@
 ;; 1997.03.13 Support for inputting special signs and punctuations added.
 ;;            (Only Ext. Wylie input)
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
     (s-state (tibetan-subjoined-tibkey-alist . s-state)
             (tibetan-vowel-tibkey-alist . m-state))
     (m-state tibetan-modifier-tibkey-alist))))
+
+;;; tibetan.el ends here
index d619f50..00328b3 100644 (file)
@@ -1,4 +1,4 @@
-;; quail/viqr.el -- Quail packages for inputting Vietnamese with VIQR system
+;;; viqr.el --- Quail packages for inputting Vietnamese with VIQR system
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
@@ -22,6 +22,8 @@
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
 ;;; Code:
 
 (require 'quail)
@@ -66,4 +68,4 @@
 
 (viet-quail-define-rules)
 
-;;; quail/viqr.el ends here
+;;; viqr.el ends here