comparison lisp/emacs-lisp/float-sup.el @ 111091:a5d92e87313c

Support for systems without floats was removed a decade ago. * lisp/loadup.el: Unconditionally load float-sup. * lisp/paren.el (show-paren-delay): * lisp/emacs-lisp/float-sup.el: * lisp/emulation/cua-base.el (cua-prefix-override-inhibit-delay): * lisp/obsolete/lazy-lock.el (lazy-lock-defer-time, lazy-lock-stealth-nice) (lazy-lock-stealth-verbose): Assume float support. * lisp/ps-print.el: Assume float support on Emacs. * lisp/emacs-lisp/timer.el (timer-next-integral-multiple-of-time): Remove non-float branch. * lisp/obsolete/lazy-lock.el: Remove leading `*' from defcustom docs.
author Glenn Morris <rgm@gnu.org>
date Thu, 21 Oct 2010 21:03:55 -0700
parents aac9726c8e54
children 417b1e4d63cd
comparison
equal deleted inserted replaced
111090:d1c6f23c3e92 111091:a5d92e87313c
1 ;;; float-sup.el --- define some constants useful for floating point numbers. 1 ;;; float-sup.el --- define some constants useful for floating point numbers.
2 2
3 ;; Copyright (C) 1985, 1986, 1987, 2001, 2002, 2003, 2004, 3 ;; Copyright (C) 1985, 1986, 1987, 2001, 2002, 2003, 2004, 2005, 2006,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 4 ;; 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5 5
6 ;; Maintainer: FSF 6 ;; Maintainer: FSF
7 ;; Keywords: internal 7 ;; Keywords: internal
8 ;; Package: emacs 8 ;; Package: emacs
9 9
24 24
25 ;;; Commentary: 25 ;;; Commentary:
26 26
27 ;;; Code: 27 ;;; Code:
28 28
29 ;; Provide a meaningful error message if we are running on 29 ;; Provide an easy hook to tell if we are running with floats or not.
30 ;; bare (non-float) emacs. 30 ;; Define pi and e via math-lib calls (much less prone to killer typos).
31
32 (if (fboundp 'atan)
33 nil
34 (error "Floating point was disabled at compile time"))
35
36 ;; provide an easy hook to tell if we are running with floats or not.
37 ;; define pi and e via math-lib calls. (much less prone to killer typos.)
38 (defconst float-pi (* 4 (atan 1)) "The value of Pi (3.1415926...).") 31 (defconst float-pi (* 4 (atan 1)) "The value of Pi (3.1415926...).")
39 (defconst pi float-pi "Obsolete since Emacs-23.3. Use `float-pi' instead.") 32 (defconst pi float-pi "Obsolete since Emacs-23.3. Use `float-pi' instead.")
40 33
41 (defconst float-e (exp 1) "The value of e (2.7182818...).") 34 (defconst float-e (exp 1) "The value of e (2.7182818...).")
42 35
43 (defconst degrees-to-radians (/ float-pi 180.0) 36 (defconst degrees-to-radians (/ float-pi 180.0)
44 "Degrees to radian conversion constant.") 37 "Degrees to radian conversion constant.")
45 (defconst radians-to-degrees (/ 180.0 float-pi) 38 (defconst radians-to-degrees (/ 180.0 float-pi)
46 "Radian to degree conversion constant.") 39 "Radian to degree conversion constant.")
47 40
48 ;; these expand to a single multiply by a float when byte compiled 41 ;; These expand to a single multiply by a float when byte compiled.
49 42
50 (defmacro degrees-to-radians (x) 43 (defmacro degrees-to-radians (x)
51 "Convert X from degrees to radians." 44 "Convert X from degrees to radians."
52 (list '* degrees-to-radians x)) 45 (list '* degrees-to-radians x))
53 (defmacro radians-to-degrees (x) 46 (defmacro radians-to-degrees (x)
54 "Convert X from radians to degrees." 47 "Convert X from radians to degrees."
55 (list '* radians-to-degrees x)) 48 (list '* radians-to-degrees x))
56 49
57 (provide 'lisp-float-type) 50 (provide 'lisp-float-type)
58 51
59 ;; arch-tag: e7837072-a4af-4d08-9953-8a3e755abf9d
60 ;;; float-sup.el ends here 52 ;;; float-sup.el ends here