;;; ;;; emu: Emulation module for each Emacs variants ;;; ;;; $Id: emu.el,v 1.1 1995/08/26 18:22:56 morioka Exp $ ;;; (cond ((boundp 'MULE) (require 'emu-mule)) ((boundp 'NEMACS)(require 'emu-nemacs)) (t (require 'emu-orig)) ) ;;; @ Emacs 19.29 emulation ;;; (if (not (fboundp 'buffer-substring-no-properties)) (defalias 'buffer-substring-no-properties 'buffer-substring) ) ;;; @ end ;;; (provide 'emu)