+1998-10-28 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * poem-om.el (char-after): Redefine to change `POS' to optional
+ argument.
+
+\f
1998-10-27 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* APEL: Version 9.8 was released.
(si:char-before (or pos (point)))
)))))
+(if (subr-fboundp 'char-after)
+ (condition-case err
+ (char-after)
+ (error
+ (when (and (eq (car (get (car err) 'error-conditions))
+ 'wrong-number-of-arguments)
+ (not (boundp 'si:char-after)))
+ (fset 'si:char-after (symbol-function 'char-after))
+ (defun char-after (&optional pos)
+ "Return character in current buffer at position POS.
+POS is an integer or a buffer pointer.
+If POS is out of range, the value is nil."
+ (si:char-after (or pos (point)))
+ )))))
+
;;; @@ obsoleted aliases
;;;
;;; You should not use them.