From 84309b3b0133f3bf87e81dfc7d736630f3734842 Mon Sep 17 00:00:00 2001 From: Jay Belanger Date: Tue, 27 Nov 2007 04:05:56 +0000 Subject: [PATCH] (math-zerop, math-negp, math-looks-negp) (math-posp, math-compare, math-bignum, math-compare-bignum): Declare as functions. --- lisp/calc/calc-macs.el | 10 ++++++++++ 1 file changed, 10 insertions(+) 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)))) -- 2.39.2