(char-octet): New function.
(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
+ (1+ n))
+ (split-char ch))
+ 0))
+
;;; @ end
;;;