964c408f5bb73568f21f641575900175ad8e67c6
[sxemacs] / lisp / float-sup.el
1 ;;; float-sup.el --- detect absence of floating-point support in SXEmacs runtime
2
3 ;; Copyright (C) 1985-7, 1997 Free Software Foundation, Inc.
4
5 ;; Maintainer: FSF
6 ;; Keywords: internal, dumped
7
8 ;; This file is part of SXEmacs.
9
10 ;; SXEmacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; SXEmacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Synched up with: FSF 19.34.
24
25 ;;; Code:
26
27 ;; This file is dumped with SXEmacs.
28
29 ;; Provide a meaningful error message if we are running on
30 ;; bare (non-float) emacs.
31 ;; Can't test for 'floatp since that may be defined by float-imitation
32 ;; packages like float.el in this very directory.
33
34 ;; XEmacs change
35 (or (featurep 'lisp-float-type)
36     (error "Floating point was disabled at compile time"))
37
38 ;; define pi and e via math-lib calls. (much less prone to killer typos.)
39 (if (featurep 'bigfr)
40     (progn
41       (defconst pi bigfr-pi "The value of Pi (3.1415926...)")
42       (defconst e euler "The value of e (2.7182818...)"))
43   (defconst pi (* 4 (atan 1)) "The value of Pi (3.1415926...)")
44   (defconst e (exp 1) "The value of e (2.7182818...)"))
45
46 ;; Careful when editing this file ... typos here will be hard to spot.
47 ;; (defconst pi       3.14159265358979323846264338327
48 ;;  "The value of Pi (3.14159265358979323846264338327...)")
49
50 (unless (featurep 'bigfr)
51   (defconst degrees-to-radians (/ pi 180.0)
52     "Degrees to radian conversion constant")
53   (defconst radians-to-degrees (/ 180.0 pi)
54     "Radian to degree conversion constant"))
55
56 ;; these expand to a single multiply by a float when byte compiled
57
58 (defmacro degrees-to-radians (x)
59   "Convert ARG from degrees to radians."
60   (list '* (/ pi 180.0) x))
61 (defmacro radians-to-degrees (x)
62   "Convert ARG from radians to degrees."
63   (list '* (/ 180.0 pi) x))
64
65 ;; Provided in C code in XEmacs
66 ;; (provide 'lisp-float-type)
67
68 (defalias 'expt #'^)
69
70 ;;; float-sup.el ends here