* poem.el (characterp): Use `char-valid-p' if it exists.
* poem.el (char-or-char-int-p): Ditto.
+2005-05-03 Tatsuya Kinoshita <tats@vega.ocn.ne.jp>
+
+ * poem.el (characterp): Use `char-valid-p' if it exists.
+ * poem.el (char-or-char-int-p): Ditto.
+
2005-02-23 Katsumi Yamaoka <yamaoka@jpl.org>
* poe-xemacs.el (run-at-time): Attempt to load `timer-funcs'
(defalias-maybe 'int-char 'identity)
-(defalias-maybe 'characterp 'integerp)
-
-(defalias-maybe 'char-or-char-int-p 'integerp)
+(defalias-maybe 'characterp
+ (cond
+ ((fboundp 'char-valid-p) 'char-valid-p)
+ (t '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.