X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=poem.el;h=f65556d6a0afe3bd4a124beee74922c8c19283af;hb=a1b3d9d3033cf911008478e841582638be013975;hp=63f670fb7cce46abc9bd188ea0a5bcc91ac24496;hpb=50106ca5f091891a1c6d1f6e4e22a4f1d38184a3;p=elisp%2Fapel.git diff --git a/poem.el b/poem.el index 63f670f..f65556d 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 defauls 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 ;;; @@ -78,8 +85,8 @@ If STRING is multibyte, the result is STRING itself. "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 - (1+ n)) + (1+ n) + 1) (split-char ch)) 0))