+1999-12-06 Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
+
+ * pym.el (subr-fboundp): Reverted; but considered as obsolete.
+
1999-12-05 Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
* poe-18.el (numberp): New function; alias for `integerp'.
;; (def-edebug-spec static-cond ...)
+;;; for backward compatibility.
+
+(defun subr-fboundp (symbol)
+ "Return t if SYMBOL's function definition is a built-in function."
+ (and (fboundp symbol)
+ (subrp (symbol-function symbol))))
+;; (make-obsolete 'subr-fboundp "don't use it.")
+
+
;;; End.
(provide 'pym)