Remove non-free old and crusty clearcase pkg
[packages] / mule-packages / latin-euro-standards / latin-euro-standards.el
1 ;;; latin-euro-standards.el -*- coding: iso-2022-7 -*-
2
3 ;; Copyright (C) 2002 Free Software Foundation, Inc
4
5 ;; Author: Aidan Kehoe
6 ;; Keywords: mule, charsets
7 ;; Created: 2005 February 7
8 ;; Last-modified: 2005 February 7
9
10 ;; This file is part of XEmacs.
11
12 ;; XEmacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; XEmacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with XEmacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Commentary:
28
29 ;; The latin-euro-standards package provides coding systems, Mule character
30 ;; sets, and language environments for the ISO-8859-13, -14, -15 and -16
31 ;; standard character encodings. Besides the Euro sign--whence the name of
32 ;; this package--among these encodings we have single-width directed
33 ;; quotation marks, handy if you're if you're in an environment where your
34 ;; TTY has a UTF-8 coding system which interprets these characters as
35 ;; single-width.
36
37 ;; These have been refactored out from the latin-unity package because it
38 ;; turns out that, to have Mule-UCS support the Euro sign, the simplest
39 ;; approach is to have these character sets available to it when
40 ;; byte-compiling. Since latin-unity already depends on mule-ucs, and since
41 ;; moving these character sets out from latin-unity and making it depend on
42 ;; them is pretty practical, we've moved them here, to avoid a nasty
43 ;; circular dependency.
44
45 ;;; Code:
46
47 (require 'latin-euro-latin7)
48 (require 'latin-euro-latin8)
49 (require 'latin-euro-latin9)
50 (require 'latin-euro-latin10)
51
52 (provide 'latin-euro-standards)
53 ;; end of latin-euro-standards.el