Mercurial > emacs
annotate lisp/language/utf-8-lang.el @ 95888:ff04c95494e4
(font_find_for_lface): If registry is NULL, try iso8859-1 and ascii-0.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Fri, 13 Jun 2008 12:29:37 +0000 |
parents | 55b7f25d920a |
children | 35e83bc351f5 |
rev | line source |
---|---|
47726
33d53d287ee4
Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents:
45357
diff
changeset
|
1 ;;; utf-8-lang.el --- generic UTF-8 language environment -*- no-byte-compile: t -*- |
42045 | 2 |
79711 | 3 ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 |
74544 | 4 ;; Free Software Foundation, Inc. |
42045 | 5 |
6 ;; Author: Dave Love <fx@gnu.org> | |
7 ;; Keywords: i18n | |
8 | |
42320 | 9 ;; This file is part of GNU Emacs. |
10 | |
94665
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
11 ;; GNU Emacs is free software: you can redistribute it and/or modify |
42045 | 12 ;; it under the terms of the GNU General Public License as published by |
94665
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 ;; the Free Software Foundation, either version 3 of the License, or |
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; (at your option) any later version. |
42045 | 15 |
45357 | 16 ;; GNU Emacs is distributed in the hope that it will be useful, |
42045 | 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 | |
94665
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
42045 | 23 |
24 ;;; Commentary: | |
25 | |
26 ;;; Code: | |
27 | |
28 (set-language-info-alist | |
88560
23939ff55df7
("UTF-8"): Use utf-8, not mule-utf-8.
Dave Love <fx@gnu.org>
parents:
42320
diff
changeset
|
29 "UTF-8" `((coding-system utf-8) |
23939ff55df7
("UTF-8"): Use utf-8, not mule-utf-8.
Dave Love <fx@gnu.org>
parents:
42320
diff
changeset
|
30 (coding-priority utf-8) |
23939ff55df7
("UTF-8"): Use utf-8, not mule-utf-8.
Dave Love <fx@gnu.org>
parents:
42320
diff
changeset
|
31 ;; Presumably not relevant now. |
23939ff55df7
("UTF-8"): Use utf-8, not mule-utf-8.
Dave Love <fx@gnu.org>
parents:
42320
diff
changeset
|
32 ;; (setup-function |
23939ff55df7
("UTF-8"): Use utf-8, not mule-utf-8.
Dave Love <fx@gnu.org>
parents:
42320
diff
changeset
|
33 ;; . (lambda () |
23939ff55df7
("UTF-8"): Use utf-8, not mule-utf-8.
Dave Love <fx@gnu.org>
parents:
42320
diff
changeset
|
34 ;; ;; Use Unicode font under Windows. Jason Rumney fecit. |
23939ff55df7
("UTF-8"): Use utf-8, not mule-utf-8.
Dave Love <fx@gnu.org>
parents:
42320
diff
changeset
|
35 ;; (if (and (fboundp 'w32-add-charset-info) |
23939ff55df7
("UTF-8"): Use utf-8, not mule-utf-8.
Dave Love <fx@gnu.org>
parents:
42320
diff
changeset
|
36 ;; (not (boundp 'w32-unicode-charset-defined))) |
23939ff55df7
("UTF-8"): Use utf-8, not mule-utf-8.
Dave Love <fx@gnu.org>
parents:
42320
diff
changeset
|
37 ;; (w32-add-charset-info "iso10646-1" 'w32-charset-ansi t)))) |
42045 | 38 ;; Is this appropriate? |
39 ;; (exit-function | |
40 ;; . (lambda () | |
41 ;; (if (and (fboundp 'w32-add-charset-info) | |
42 ;; (not (boundp 'w32-unicode-charset-defined))) | |
43 ;; (setq w32-charset-info-alist | |
44 ;; (delete (assoc "iso10646-1") | |
45 ;; w32-charset-info-alist))))) | |
46 (input-method . "rfc1345") ; maybe not the best choice | |
47 (documentation . "\ | |
88560
23939ff55df7
("UTF-8"): Use utf-8, not mule-utf-8.
Dave Love <fx@gnu.org>
parents:
42320
diff
changeset
|
48 This language environment is a generic one for the Unicode character set |
23939ff55df7
("UTF-8"): Use utf-8, not mule-utf-8.
Dave Love <fx@gnu.org>
parents:
42320
diff
changeset
|
49 encoded in UTF-8.")) |
42045 | 50 nil) |
51 | |
52 (provide 'utf-8-lang) | |
52401 | 53 |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91327
diff
changeset
|
54 ;; arch-tag: dfa339e1-296f-4b1e-9fe8-2b65279ec813 |
42045 | 55 ;;; utf-8-lang.el ends here |