summaryrefslogtreecommitdiff
path: root/lisp/float-sup.el
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-03-16 20:39:07 +0000
committerJim Blandy <jimb@redhat.com>1992-03-16 20:39:07 +0000
commit49116ac071969bee7f129bf7ce725c7a5b0b0fc5 (patch)
tree60c249f15b04478367256fef95c6fd7557f263b9 /lisp/float-sup.el
parent3b4a6e271d44955328c39de1475e42cf0b4cd637 (diff)
downloademacs-49116ac071969bee7f129bf7ce725c7a5b0b0fc5.tar.gz
*** empty log message ***
Diffstat (limited to 'lisp/float-sup.el')
-rw-r--r--lisp/float-sup.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/float-sup.el b/lisp/float-sup.el
index d7b756238d3..f784ef2bf3c 100644
--- a/lisp/float-sup.el
+++ b/lisp/float-sup.el
@@ -27,8 +27,6 @@
(error "Floating point was disabled at compile time"))
;; provide an easy hook to tell if we are running with floats or not.
-(provide 'lisp-float-type)
-
;; define pi and e via math-lib calls. (much less prone to killer typos.)
(defconst pi (* 4 (atan 1)) "The value of Pi (3.1415926...)")
(defconst e (exp 1) "The value of e (2.7182818...)")
@@ -50,3 +48,6 @@
(defmacro radians-to-degrees (x)
"Convert ARG from radians to degrees."
(list '* (/ 180.0 pi) x))
+
+(provide 'lisp-float-type)
+