Mercurial > hg > xemacs-beta
comparison lisp/mule/greek.el @ 771:943eaba38521
[xemacs-hg @ 2002-03-13 08:51:24 by ben]
The big ben-mule-21-5 check-in!
Various files were added and deleted. See CHANGES-ben-mule.
There are still some test suite failures. No crashes, though.
Many of the failures have to do with problems in the test suite itself
rather than in the actual code. I'll be addressing these in the next
day or so -- none of the test suite failures are at all critical.
Meanwhile I'll be trying to address the biggest issues -- i.e. build
or run failures, which will almost certainly happen on various platforms.
All comments should be sent to ben@xemacs.org -- use a Cc: if necessary
when sending to mailing lists. There will be pre- and post- tags,
something like
pre-ben-mule-21-5-merge-in, and
post-ben-mule-21-5-merge-in.
author | ben |
---|---|
date | Wed, 13 Mar 2002 08:54:06 +0000 |
parents | 7039e6323819 |
children | 2923009caf47 |
comparison
equal
deleted
inserted
replaced
770:336a418893b5 | 771:943eaba38521 |
---|---|
31 | 31 |
32 ;; For syntax of Greek | 32 ;; For syntax of Greek |
33 (loop for c from 54 to 126 | 33 (loop for c from 54 to 126 |
34 do (modify-syntax-entry (make-char 'greek-iso8859-7 c) "w")) | 34 do (modify-syntax-entry (make-char 'greek-iso8859-7 c) "w")) |
35 (modify-syntax-entry (make-char 'greek-iso8859-7 32) "w") ; no-break space | 35 (modify-syntax-entry (make-char 'greek-iso8859-7 32) "w") ; no-break space |
36 (modify-syntax-entry ?.FN7 ".") | 36 (modify-syntax-entry ?,F7(B ".") |
37 (modify-syntax-entry ?N; ".") | 37 (modify-syntax-entry ?,F;(B ".") |
38 (modify-syntax-entry ?N= ".") | 38 (modify-syntax-entry ?,F=(B ".") |
39 | 39 |
40 | 40 |
41 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 41 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
42 ;;; GREEK | 42 ;;; GREEK |
43 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 43 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
52 ;; (mime-charset . iso-8859-7))) | 52 ;; (mime-charset . iso-8859-7))) |
53 | 53 |
54 ;; (define-coding-system-alias 'iso-8859-7 'greek-iso-8bit) | 54 ;; (define-coding-system-alias 'iso-8859-7 'greek-iso-8bit) |
55 | 55 |
56 (make-coding-system | 56 (make-coding-system |
57 'iso-8859-7 'iso2022 "MIME ISO-8859-7" | 57 'iso-8859-7 'iso2022 "ISO-8859-7 (Greek)" |
58 '(charset-g0 ascii | 58 '(charset-g0 ascii |
59 charset-g1 greek-iso8859-7 | 59 charset-g1 greek-iso8859-7 |
60 charset-g2 t | 60 charset-g2 t |
61 charset-g3 t | 61 charset-g3 t |
62 mnemonic "Grk" | 62 mnemonic "Grk" |
63 )) | 63 )) |
64 | 64 |
65 (defun setup-greek-environment () | |
66 "Setup multilingual environment (MULE) for Greek." | |
67 (interactive) | |
68 (set-language-environment "Greek")) | |
69 | |
70 (set-language-info-alist | 65 (set-language-info-alist |
71 "Greek" '((charset greek-iso8859-7) | 66 "Greek" '((charset greek-iso8859-7) |
72 (coding-system iso-8859-7) | 67 (coding-system iso-8859-7) |
73 (coding-priority iso-8859-7) | 68 (coding-priority iso-8859-7) |
69 (locale "el_GR.iso88597" "el_GR.greek8" "el_GR" "greek" "el") | |
74 (input-method . "greek") | 70 (input-method . "greek") |
75 (sample-text . "Greek (NGNkNkN]NmNiNjNa) NCNeNiN\ NsNaNr") | 71 (sample-text . "Greek (,FGkk]mija(B) ,FCei\(B ,Fsar(B") |
76 (documentation . t))) | 72 (documentation . t))) |
77 | 73 |
78 ;;; greek.el ends here | 74 ;;; greek.el ends here |