a8b7ddc4e1db3cede5633ff2a5326432a8287746
[elisp/apel.git] / emu-latin1.el
1 ;;; emu-latin1.el --- emu module for Emacs 19 and XEmacs without MULE
2
3 ;; Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Keywords: emulation, compatibility, mule, Latin-1
7
8 ;; This file is part of emu.
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Code:
26
27 (require 'poem)
28
29
30 ;;; @ coding-system
31 ;;;
32
33 (defconst *internal* nil)
34 (defconst *ctext* nil)
35 (defconst *noconv* nil)
36
37 ;;; @@ for old MULE emulation
38 ;;;
39
40 (defun code-convert-string (str ic oc)
41   "Convert code in STRING from SOURCE code to TARGET code,
42 On successful converion, returns the result string,
43 else returns nil. [emu-latin1.el; old MULE emulating function]"
44   str)
45
46 (defun code-convert-region (beg end ic oc)
47   "Convert code of the text between BEGIN and END from SOURCE
48 to TARGET. On successful conversion returns t,
49 else returns nil. [emu-latin1.el; old MULE emulating function]"
50   t)
51
52
53 ;;; @ end
54 ;;;
55
56 (provide 'emu-latin1)
57
58 ;;; emu-latin1.el ends here