1 ;;; pces-e20.el --- pces submodule for Emacs 20
3 ;; Copyright (C) 1998,1999 Free Software Foundation, Inc.
5 ;; Author: MORIOKA Tomohiko <tomo@m17n.org>
6 ;; Keywords: emulation, compatibility, Mule
8 ;; This file is part of APEL (A Portable Emacs Library).
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.
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.
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.
29 (unless (and (fboundp 'set-buffer-multibyte)
30 (subrp (symbol-function 'set-buffer-multibyte)))
31 (require 'pces-e20_2) ; for Emacs 20.1 and 20.2
34 (defsubst-maybe find-coding-system (obj)
35 "Return OBJ if it is a coding-system."
36 (if (coding-system-p obj)
39 (defalias 'set-process-input-coding-system 'set-process-coding-system)
46 (product-provide (provide 'pces-e20) (require 'apel-ver))
48 ;;; pces-e20.el ends here