1999-12-05 Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
+ * poe-18.el (numberp): New function; alias for `integerp'.
+ (abs): New function.
+
* poe-18.el (byte-code-function-p): Docstring sync.
(cyclic-function-indirection): New error symbol.
(indirect-function): New function; use above symbol.
ct2 (- ct2 65536)))
(list ct1 ct2 0)))
+;;; @@ Floating point numbers.
+;;;
+
+(defalias 'numberp 'integerp)
+
+(defun abs (arg)
+ "Return the absolute value of ARG."
+ (if (< arg 0) (- arg) arg))
+
;;; @ Basic lisp subroutines.
;;;