* poe-18.el (numberp, mod): Removed.
[elisp/apel.git] / poe-18.el
index 51541d1..f80caec 100644 (file)
--- a/poe-18.el
+++ b/poe-18.el
@@ -450,8 +450,6 @@ resolution finer than a second."
 ;;; @@ Floating point numbers.
 ;;;
 
-(defalias-maybe 'numberp 'integerp)
-
 (defun abs (arg)
   "Return the absolute value of ARG."
   (if (< arg 0) (- arg) arg))
@@ -465,8 +463,6 @@ With optional DIVISOR, return the largest integer no greater than ARG/DIVISOR."
       (- (/ (- divisor 1 arg) divisor))
     (/ arg divisor)))
 
-(defalias-maybe 'mod '%)
-
 ;;; @ Basic lisp subroutines.
 ;;;