diff options
author | Jim Blandy <jimb@redhat.com> | 1992-03-16 20:39:07 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-03-16 20:39:07 +0000 |
commit | e8151d91bd02af2b60974c2a439450c81bd24974 (patch) | |
tree | 52141382c5b7e71a4fe612c0dfaff741778262b9 /lisp/float-sup.el | |
parent | 18806e8f99c254f8f7980ce593dc1532d8ff3373 (diff) | |
download | emacs-e8151d91bd02af2b60974c2a439450c81bd24974.tar.gz |
*** empty log message ***
Diffstat (limited to 'lisp/float-sup.el')
-rw-r--r-- | lisp/float-sup.el | 5 |
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) + |