comparison leim/quail/latin-pre.el @ 38453:519983161a46

Some fixes to follow lisp coding conventions and typo fixes.
author Pavel Janík <Pavel@Janik.cz>
date Mon, 16 Jul 2001 20:22:24 +0000
parents 4b1eea707360
children a737a60a450b
comparison
equal deleted inserted replaced
38452:e1e6c0c30e69 38453:519983161a46
1 ;;; latin-pre.el -- Quail packages for inputting various European characters. 1 ;;; latin-pre.el --- Quail packages for inputting various European characters
2 2
3 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. 3 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
4 ;; Licensed to the Free Software Foundation. 4 ;; Licensed to the Free Software Foundation.
5 ;; Copyright (C) 2000 Free Software Foundation, Inc. 5 ;; Copyright (C) 2000 Free Software Foundation, Inc.
6 6
29 ;; latin-1-prefix: extra special characters added, adapted from the vim 29 ;; latin-1-prefix: extra special characters added, adapted from the vim
30 ;; digraphs (from J.H.M.Dassen <jdassen@wi.leidenuniv.nl>) 30 ;; digraphs (from J.H.M.Dassen <jdassen@wi.leidenuniv.nl>)
31 ;; by R.F. Smith <rsmith@xs4all.nl> 31 ;; by R.F. Smith <rsmith@xs4all.nl>
32 ;; 32 ;;
33 ;; polish-slash: 33 ;; polish-slash:
34 ;; Author: W,B3(Bodek Bzyl <matwb@univ.gda.pl> 34 ;; Author: W,B3(Bodek Bzyl <matwb@univ.gda.pl>
35 ;; Maintainer: W,B3(Bodek Bzyl <matwb@univ.gda.pl> 35 ;; Maintainer: W,B3(Bodek Bzyl <matwb@univ.gda.pl>
36 ;; 36 ;;
37 ;; latin-[89]-prefix: Dave Love <fx@gnu.org> 37 ;; latin-[89]-prefix: Dave Love <fx@gnu.org>
38 38
39 ;;; Code: 39 ;;; Code:
40 40
60 | _ / | _: -> ,Aw(B /c -> ,A"(B /2 -> ,A=(B /4 -> ,A<(B /3 -> ,A>(B 60 | _ / | _: -> ,Aw(B /c -> ,A"(B /2 -> ,A=(B /4 -> ,A<(B /3 -> ,A>(B
61 | _ / | /= => ,A,(B 61 | _ / | /= => ,A,(B
62 symbol | ^ | ^r -> ,A.(B ^c -> ,A)(B ^1 -> ,A9(B ^2 -> ,A2(B ^3 -> ,A3(B 62 symbol | ^ | ^r -> ,A.(B ^c -> ,A)(B ^1 -> ,A9(B ^2 -> ,A2(B ^3 -> ,A3(B
63 " nil t nil nil nil nil nil nil nil nil t) 63 " nil t nil nil nil nil nil nil nil nil t)
64 64
65 ;; Fixme: should we have non-break space somehow? Is so, how? 65 ;; Fixme: should we have non-break space somehow? If so, how?
66 (quail-define-rules 66 (quail-define-rules
67 ("'A" ?,AA(B) 67 ("'A" ?,AA(B)
68 ("'E" ?,AI(B) 68 ("'E" ?,AI(B)
69 ("'I" ?,AM(B) 69 ("'I" ?,AM(B)
70 ("'O" ?,AS(B) 70 ("'O" ?,AS(B)
977 ("~p" ?,_6(B) 977 ("~p" ?,_6(B)
978 ("~s" ?,_'(B) 978 ("~s" ?,_'(B)
979 ("~$" ?,_#(B) 979 ("~$" ?,_#(B)
980 ("^r" ?,_.(B) 980 ("^r" ?,_.(B)
981 ("^c" ?,_)(B)) 981 ("^c" ?,_)(B))
982
983 ;;; latin-pre.el ends here