From: Jay Belanger Date: Tue, 27 Nov 2007 04:05:56 +0000 (+0000) Subject: (math-zerop, math-negp, math-looks-negp) X-Git-Tag: emacs-pretest-23.0.90~9441 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=84309b3b0133f3bf87e81dfc7d736630f3734842;p=emacs.git (math-zerop, math-negp, math-looks-negp) (math-posp, math-compare, math-bignum, math-compare-bignum): Declare as functions. --- diff --git a/lisp/calc/calc-macs.el b/lisp/calc/calc-macs.el index 27001b43f36..8e939cdde7b 100644 --- a/lisp/calc/calc-macs.el +++ b/lisp/calc/calc-macs.el @@ -27,6 +27,16 @@ ;;; 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))))