Mercurial > emacs
annotate lisp/language/czech.el @ 91571:42b5c4e03611
Mention removal of --with-gcc, --with-gtk.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Wed, 06 Feb 2008 07:59:09 +0000 |
parents | 606f2d163a64 |
children | 1e3a407766b9 |
rev | line source |
---|---|
47726
33d53d287ee4
Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents:
43740
diff
changeset
|
1 ;;; czech.el --- support for Czech -*- coding: iso-2022-7bit; no-byte-compile: t -*- |
21196 | 2 |
79711 | 3 ;; Copyright (C) 1998, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 |
74544 | 4 ;; Free Software Foundation. |
21196 | 5 |
38381 | 6 ;; Author: Milan Zamazal <pdm@zamazal.org> |
37768 | 7 ;; Maintainer: Pavel Jan,Am(Bk <Pavel@Janik.cz> |
21196 | 8 ;; Keywords: multilingual, Czech |
9 | |
21420
d51476961314
Add coding-priority. Improve sample text.
Karl Heuer <kwzh@gnu.org>
parents:
21203
diff
changeset
|
10 ;; This file is part of GNU Emacs. |
d51476961314
Add coding-priority. Improve sample text.
Karl Heuer <kwzh@gnu.org>
parents:
21203
diff
changeset
|
11 |
d51476961314
Add coding-priority. Improve sample text.
Karl Heuer <kwzh@gnu.org>
parents:
21203
diff
changeset
|
12 ;; GNU Emacs is free software; you can redistribute it and/or modify |
d51476961314
Add coding-priority. Improve sample text.
Karl Heuer <kwzh@gnu.org>
parents:
21203
diff
changeset
|
13 ;; it under the terms of the GNU General Public License as published by |
78236
9355f9b7bbff
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
14 ;; the Free Software Foundation; either version 3, or (at your option) |
21420
d51476961314
Add coding-priority. Improve sample text.
Karl Heuer <kwzh@gnu.org>
parents:
21203
diff
changeset
|
15 ;; any later version. |
d51476961314
Add coding-priority. Improve sample text.
Karl Heuer <kwzh@gnu.org>
parents:
21203
diff
changeset
|
16 |
d51476961314
Add coding-priority. Improve sample text.
Karl Heuer <kwzh@gnu.org>
parents:
21203
diff
changeset
|
17 ;; GNU Emacs is distributed in the hope that it will be useful, |
d51476961314
Add coding-priority. Improve sample text.
Karl Heuer <kwzh@gnu.org>
parents:
21203
diff
changeset
|
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
d51476961314
Add coding-priority. Improve sample text.
Karl Heuer <kwzh@gnu.org>
parents:
21203
diff
changeset
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
d51476961314
Add coding-priority. Improve sample text.
Karl Heuer <kwzh@gnu.org>
parents:
21203
diff
changeset
|
20 ;; GNU General Public License for more details. |
d51476961314
Add coding-priority. Improve sample text.
Karl Heuer <kwzh@gnu.org>
parents:
21203
diff
changeset
|
21 |
d51476961314
Add coding-priority. Improve sample text.
Karl Heuer <kwzh@gnu.org>
parents:
21203
diff
changeset
|
22 ;; You should have received a copy of the GNU General Public License |
d51476961314
Add coding-priority. Improve sample text.
Karl Heuer <kwzh@gnu.org>
parents:
21203
diff
changeset
|
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
21196 | 26 |
27 ;;; Commentary: | |
28 | |
29 ;; Czech ISO 8859-2 environment. | |
30 | |
31 ;;; Code: | |
32 | |
33 (set-language-info-alist | |
22982
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
21894
diff
changeset
|
34 "Czech" '((charset . (ascii latin-iso8859-2)) |
21196 | 35 (coding-system . (iso-8859-2)) |
21420
d51476961314
Add coding-priority. Improve sample text.
Karl Heuer <kwzh@gnu.org>
parents:
21203
diff
changeset
|
36 (coding-priority . (iso-8859-2)) |
22982
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
21894
diff
changeset
|
37 (input-method . "czech") |
88434
d5a8d241f4f3
("Czech"): Set `iso-8859-2' for `nonascii-translation'.
Kenichi Handa <handa@m17n.org>
parents:
42194
diff
changeset
|
38 (nonascii-translation . iso-8859-2) |
22982
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
21894
diff
changeset
|
39 (unibyte-display . iso-8859-2) |
21464
c914aef13b33
Fix previous change, TUTORIAL.ch > TUTORIAL.cs.
Kenichi Handa <handa@m17n.org>
parents:
21463
diff
changeset
|
40 (tutorial . "TUTORIAL.cs") |
21420
d51476961314
Add coding-priority. Improve sample text.
Karl Heuer <kwzh@gnu.org>
parents:
21203
diff
changeset
|
41 (sample-text . "P,Bx(Bejeme v,Ba(Bm hezk,B}(B den!") |
37158
3c52214fcdfb
("Czech"): Add documentation string.
Gerd Moellmann <gerd@gnu.org>
parents:
28906
diff
changeset
|
42 (documentation . "\ |
3c52214fcdfb
("Czech"): Add documentation string.
Gerd Moellmann <gerd@gnu.org>
parents:
28906
diff
changeset
|
43 This language environment is almost the same as Latin-2, |
43740
fa4e608c23c5
("Czech"): Fix the documentation.
Pavel Janík <Pavel@Janik.cz>
parents:
42194
diff
changeset
|
44 but sets the default input method to \"czech\", |
42194 | 45 and selects the Czech tutorial.")) |
21473
1f46ca9f3ff3
Put Czech lang. env. under European..
Kenichi Handa <handa@m17n.org>
parents:
21464
diff
changeset
|
46 '("European")) |
21196 | 47 |
48 (provide 'czech) | |
49 | |
52401 | 50 ;;; arch-tag: 45ac0d83-ca13-4b5e-9e82-821e44080c24 |
38381 | 51 ;;; czech.el ends here |