tm 6.88.
[elisp/apel.git] / emu.el
1 ;;;
2 ;;; emu.el --- Emulation module for each Emacs variants
3 ;;;
4 ;;; Copyright (C) 1995 Free Software Foundation, Inc.
5 ;;; Copyright (C) 1995 MORIOKA Tomohiko
6 ;;;
7 ;;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
8 ;;; Version:
9 ;;;     $Id: emu.el,v 4.0 1995/09/21 00:05:57 morioka Exp $
10 ;;; Keywords: emulation, compatibility, NEmacs, Mule, XEmacs
11 ;;;
12 ;;; This file is part of tl and tm (Tools for MIME).
13 ;;;
14
15 (cond ((boundp 'MULE)  (require 'emu-mule))
16       ((boundp 'NEMACS)(require 'emu-nemacs))
17       (t               (require 'emu-orig))
18       )
19
20
21 ;;; @ Emacs 19.29 emulation
22 ;;;
23
24 (if (not (fboundp 'buffer-substring-no-properties))
25     (defalias 'buffer-substring-no-properties 'buffer-substring)
26   )
27
28
29 ;;; @ end
30 ;;;
31
32 (provide 'emu)