Function: math-messy-integerp

math-messy-integerp is a byte-compiled function defined in calc-ext.el.gz.

Signature

(math-messy-integerp A)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-ext.el.gz
;;; True if A is numerically (but not literally) an integer.  [P x] [Public]
(defun math-messy-integerp (a)
  (cond
   ((eq (car-safe a) 'float) (>= (nth 2 a) 0))
   ;; FIXME: Math-messy-integerp does not include this case!
   ((eq (car-safe a) 'frac) (Math-integerp (math-normalize a)))))