tm 6.73.
[elisp/apel.git] / emu.el
1 ;;;
2 ;;; emu: Emulation module for each Emacs variants
3 ;;;
4 ;;; $Id: emu.el,v 1.1 1995/08/26 18:22:56 morioka Exp $
5 ;;;
6
7 (cond ((boundp 'MULE)  (require 'emu-mule))
8       ((boundp 'NEMACS)(require 'emu-nemacs))
9       (t               (require 'emu-orig))
10       )
11
12
13 ;;; @ Emacs 19.29 emulation
14 ;;;
15
16 (if (not (fboundp 'buffer-substring-no-properties))
17     (defalias 'buffer-substring-no-properties 'buffer-substring)
18   )
19
20
21 ;;; @ end
22 ;;;
23
24 (provide 'emu)