Mercurial > emacs
annotate lisp/language/romanian.el @ 77896:c11694f17ad9
(highlight-changes-rotate-faces): Don't set modified flag of buffer.
Use `inhibit-modification-hooks'.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Mon, 04 Jun 2007 23:39:06 +0000 |
parents | e3694f1cb928 |
children | 9355f9b7bbff 95d0cdf160ea |
rev | line source |
---|---|
47726
33d53d287ee4
Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
1 ;;; romanian.el --- support for Romanian -*- coding: iso-latin-2; no-byte-compile: t -*- |
21540 | 2 |
75347 | 3 ;; Copyright (C) 1998, 2001, 2002, 2003, 2004, 2005, 2006, 2007 |
74544 | 4 ;; Free Software Foundation. |
21540 | 5 |
6 ;; Author: Dan Nicolaescu <done@ece.arizona.edu> | |
7 ;; Keywords: multilingual, Romanian | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
21540 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; Romanian ISO 8859-2 environment. | |
29 | |
30 ;;; Code: | |
31 | |
32 (set-language-info-alist | |
22982
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
21674
diff
changeset
|
33 "Romanian" '((charset . (ascii latin-iso8859-2)) |
21662
95299ecbc8b3
Set t to `documentation' info for Romanian.
Kenichi Handa <handa@m17n.org>
parents:
21627
diff
changeset
|
34 (coding-system . (iso-8859-2)) |
95299ecbc8b3
Set t to `documentation' info for Romanian.
Kenichi Handa <handa@m17n.org>
parents:
21627
diff
changeset
|
35 (coding-priority . (iso-8859-2)) |
22982
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
21674
diff
changeset
|
36 (nonascii-translation . latin-iso8859-2) |
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
21674
diff
changeset
|
37 (input-method . "latin-2-postfix") |
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
21674
diff
changeset
|
38 (unibyte-syntax . "latin-2") |
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
21674
diff
changeset
|
39 (unibyte-display . iso-8859-2) |
23077
622e626ccb93
("Romanian"): Specify the tutorial file.
Richard M. Stallman <rms@gnu.org>
parents:
22982
diff
changeset
|
40 (tutorial . "TUTORIAL.ro") |
22982
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
21674
diff
changeset
|
41 (sample-text . "Bună ziua, bine ați venit!") |
21662
95299ecbc8b3
Set t to `documentation' info for Romanian.
Kenichi Handa <handa@m17n.org>
parents:
21627
diff
changeset
|
42 (documentation . t)) |
21540 | 43 '("European")) |
44 | |
45 (provide 'romanian) | |
46 | |
52401 | 47 ;;; arch-tag: a0bf93ee-2f02-4678-a477-c08acc35366b |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
28906
diff
changeset
|
48 ;;; romanian.el ends here |