changeset 86476:577a47c95cf8

(math-zerop, math-negp, math-looks-negp) (math-posp, math-compare, math-bignum, math-compare-bignum): Declare as functions.
author Jay Belanger <jay.p.belanger@gmail.com>
date Tue, 27 Nov 2007 04:05:56 +0000
parents d76be4a4a0a5
children 327601aefd65
files lisp/calc/calc-macs.el
diffstat 1 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/calc/calc-macs.el	Tue Nov 27 04:05:19 2007 +0000
+++ b/lisp/calc/calc-macs.el	Tue Nov 27 04:05:56 2007 +0000
@@ -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))))