X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=poem.el;h=70ef7be0c03603b340e31339b9719ed2a54fa3b6;hb=6fcafcca42e8f5a08d0ccd58c699fbe7e185dc17;hp=45a0636dec276647a32237206193c7aebc7a06f7;hpb=76c8137b5cc28d44a99ed356fa45c5ec2656ddb8;p=elisp%2Fapel.git diff --git a/poem.el b/poem.el index 45a0636..70ef7be 100644 --- a/poem.el +++ b/poem.el @@ -1,6 +1,6 @@ ;;; poem.el --- Emulate latest MULE features; -*-byte-compile-dynamic: t;-*- -;; Copyright (C) 1998 Free Software Foundation, Inc. +;; Copyright (C) 1998,1999 Free Software Foundation, Inc. ;; Author: MORIOKA Tomohiko ;; Keywords: emulation, compatibility, Mule @@ -19,12 +19,12 @@ ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs; see the file COPYING. If not, write to the -;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, -;; Boston, MA 02111-1307, USA. +;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +;; Boston, MA 02110-1301, USA. ;;; Code: -(require 'poe) +(require 'pces) (cond ((featurep 'mule) (cond ((featurep 'xemacs) @@ -47,13 +47,6 @@ )) -;;; @ MULE 2 emulation -;;; - -(defsubst-maybe cancel-undo-boundary () - "Cancel undo boundary. [MULE 2.3 emulating function]") - - ;;; @ Emacs 20.3 emulation ;;; @@ -69,6 +62,13 @@ If STRING is multibyte, the result is STRING itself. \[Emacs 20.3 emulating macro]" string) +(defun-maybe charset-after (&optional pos) + "Return charset of a character in current buffer at position POS. +If POS is nil, it defaults to the current point. +If POS is out of range, the value is nil. +\[Emacs 20.3 emulating function]" + (char-charset (char-after pos)) + ) ;;; @ XEmacs-mule emulation ;;; @@ -77,9 +77,15 @@ If STRING is multibyte, the result is STRING itself. (defalias-maybe 'int-char 'identity) -(defalias-maybe 'characterp 'integerp) +(defalias-maybe 'characterp + (cond + ((fboundp 'char-valid-p) 'char-valid-p) + (t 'integerp))) -(defalias-maybe 'char-or-char-int-p 'integerp) +(defalias-maybe 'char-or-char-int-p + (cond + ((fboundp 'char-valid-p) 'char-valid-p) + (t 'integerp))) (defun-maybe char-octet (ch &optional n) "Return the octet numbered N (should be 0 or 1) of char CH. @@ -94,6 +100,7 @@ N defaults to 0 if omitted. [XEmacs-mule emulating function]" ;;; @ end ;;; -(provide 'poem) +(require 'product) +(product-provide (provide 'poem) (require 'apel-ver)) ;;; poem.el ends here