]> code.delx.au - gnu-emacs/commitdiff
(math-zerop, math-negp, math-looks-negp)
authorJay Belanger <jay.p.belanger@gmail.com>
Tue, 27 Nov 2007 04:05:56 +0000 (04:05 +0000)
committerJay Belanger <jay.p.belanger@gmail.com>
Tue, 27 Nov 2007 04:05:56 +0000 (04:05 +0000)
(math-posp, math-compare, math-bignum, math-compare-bignum):
Declare as functions.

lisp/calc/calc-macs.el

index 27001b43f367ca2005fc0b5766120febfd7075f2..8e939cdde7bd27dd69f2a739cce3e64fbe28464e 100644 (file)
 
 ;;; Code:
 
+;; Declare functions which are defined elsewhere.
+(declare-function math-zerop "calc-misc" (a))
+(declare-function math-negp "calc-misc" (a))
+(declare-function math-looks-negp "calc-misc" (a))
+(declare-function math-posp "calc-misc" (a))
+(declare-function math-compare "calc-ext" (a b))
+(declare-function math-bignum "calc" (a))
+(declare-function math-compare-bignum "calc-ext" (a b))
+
+
 (defmacro calc-wrapper (&rest body)
   `(calc-do (function (lambda ()
                        ,@body))))