diff options
| author | Dave Love | 2002-05-19 11:18:44 +0000 |
|---|---|---|
| committer | Dave Love | 2002-05-19 11:18:44 +0000 |
| commit | ec8ac703a5c361141c0defc55e3f2735bb737629 (patch) | |
| tree | 6c6d9251c40c11de93ab09ac5b96401e418ef371 | |
| parent | 9be334343980572da51ec499beee9b82c74f7f57 (diff) | |
| download | emacs-ec8ac703a5c361141c0defc55e3f2735bb737629.tar.gz emacs-ec8ac703a5c361141c0defc55e3f2735bb737629.zip | |
(iso-latin-10): New coding system.
| -rw-r--r-- | lisp/language/romanian.el | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/lisp/language/romanian.el b/lisp/language/romanian.el index e0a7513ca6a..d89c36b7492 100644 --- a/lisp/language/romanian.el +++ b/lisp/language/romanian.el | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | ;;; romanian.el --- support for Romanian -*- coding: iso-latin-2; -*- | 1 | ;;; romanian.el --- support for Romanian -*- coding: iso-latin-2; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1998 Free Software Foundation. | 3 | ;; Copyright (C) 1998, 2002 Free Software Foundation. |
| 4 | 4 | ||
| 5 | ;; Author: Dan Nicolaescu <done@ece.arizona.edu> | 5 | ;; Author: Dan Nicolaescu <done@ece.arizona.edu> |
| 6 | ;; Keywords: multilingual, Romanian | 6 | ;; Keywords: multilingual, Romanian, i18n |
| 7 | 7 | ||
| 8 | ;; This file is part of GNU Emacs. | 8 | ;; This file is part of GNU Emacs. |
| 9 | 9 | ||
| @@ -24,7 +24,7 @@ | |||
| 24 | 24 | ||
| 25 | ;;; Commentary: | 25 | ;;; Commentary: |
| 26 | 26 | ||
| 27 | ;; Romanian ISO 8859-2 environment. | 27 | ;; Romanian ISO 8859-2 environment plus 8859-16 coding system. |
| 28 | 28 | ||
| 29 | ;;; Code: | 29 | ;;; Code: |
| 30 | 30 | ||
| @@ -41,6 +41,18 @@ | |||
| 41 | (documentation . t)) | 41 | (documentation . t)) |
| 42 | '("European")) | 42 | '("European")) |
| 43 | 43 | ||
| 44 | (define-coding-system 'iso-latin-10 | ||
| 45 | "ISO 2022 based 8-bit encoding for Latin-10." | ||
| 46 | :coding-type 'charset | ||
| 47 | :mnemonic ?* | ||
| 48 | :charset-list '(iso-885916) | ||
| 49 | ;; not in current IANA list | ||
| 50 | ;; :mime-charset 'iso-885916 | ||
| 51 | ) | ||
| 52 | |||
| 53 | (define-coding-system-alias 'iso-885916 'iso-latin-10) | ||
| 54 | (define-coding-system-alias 'latin-10 'iso-latin-10) | ||
| 55 | |||
| 44 | (provide 'romanian) | 56 | (provide 'romanian) |
| 45 | 57 | ||
| 46 | ;;; romanian.el ends here | 58 | ;;; romanian.el ends here |