X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=poem.el;h=ec87a433dc591bda26aa138a384c1fa6392aa3d2;hb=refs%2Fheads%2Fyamaoka-maybe;hp=70d08cc1caa1caf935faf70d10dd462e78487447;hpb=eb0a0934a64d269d7ba68e2513e0147881fa0997;p=elisp%2Fapel.git diff --git a/poem.el b/poem.el index 70d08cc..ec87a43 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 @@ -24,7 +24,7 @@ ;;; Code: -(require 'poe) +(require 'pces) (cond ((featurep 'mule) (cond ((featurep 'xemacs) @@ -62,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 ;;; @@ -70,12 +77,24 @@ If STRING is multibyte, the result is STRING itself. (defalias-maybe 'int-char 'identity) +(defalias-maybe 'characterp 'integerp) + (defalias-maybe 'char-or-char-int-p 'integerp) +(defun-maybe char-octet (ch &optional n) + "Return the octet numbered N (should be 0 or 1) of char CH. +N defaults to 0 if omitted. [XEmacs-mule emulating function]" + (or (nth (if n + (1+ n) + 1) + (split-char ch)) + 0)) + ;;; @ end ;;; -(provide 'poem) +(require 'product) +(product-provide (provide 'poem) (require 'apel-ver)) ;;; poem.el ends here