Mercurial > emacs
annotate lisp/float-sup.el @ 50233:e25cbad07868
* window.c (enum window_part): Move to dispextern.h.
(coordinates_in_window): Use enum window_part member names
instead of numbers to describe return value.
(struct check_window_data): Change part member to window_part.
(check_window_containing): Return window_part unaltered.
(window_from_coordinates): Change part arg from int to enum
window_part. Allow part arg to be null. All users changed.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Fri, 21 Mar 2003 13:52:06 +0000 |
parents | 287be189a2e6 |
children | 0278ce06c1b3 |
rev | line source |
---|---|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; float-sup.el --- detect absence of floating-point support in Emacs runtime |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
845 | 3 ;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. |
4 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
5 ;; Maintainer: FSF |
45078 | 6 ;; Keywords: internal |
36 | 7 |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs 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 | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
36 | 24 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
14169
diff
changeset
|
25 ;;; Commentary: |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
14169
diff
changeset
|
26 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
27 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
28 |
36 | 29 ;; Provide a meaningful error message if we are running on |
30 ;; bare (non-float) emacs. | |
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.) | |
41951 | 38 (defconst pi (* 4 (atan 1)) "The value of Pi (3.1415926...).") |
49695
287be189a2e6
(e): Make it a variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45078
diff
changeset
|
39 ;; It's too inconvenient to make `e' a constant because it's used as |
287be189a2e6
(e): Make it a variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45078
diff
changeset
|
40 ;; a temporary variable all the time. |
287be189a2e6
(e): Make it a variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45078
diff
changeset
|
41 (defvar e (exp 1) "The value of e (2.7182818...).") |
36 | 42 |
43 ;; Careful when editing this file ... typos here will be hard to spot. | |
44 ;; (defconst pi 3.14159265358979323846264338327 | |
45 ;; "The value of Pi (3.14159265358979323846264338327...)") | |
46 | |
47 (defconst degrees-to-radians (/ pi 180.0) | |
41951 | 48 "Degrees to radian conversion constant.") |
36 | 49 (defconst radians-to-degrees (/ 180.0 pi) |
41951 | 50 "Radian to degree conversion constant.") |
36 | 51 |
202 | 52 ;; these expand to a single multiply by a float when byte compiled |
36 | 53 |
54 (defmacro degrees-to-radians (x) | |
55 "Convert ARG from degrees to radians." | |
56 (list '* (/ pi 180.0) x)) | |
57 (defmacro radians-to-degrees (x) | |
58 "Convert ARG from radians to degrees." | |
59 (list '* (/ 180.0 pi) x)) | |
584 | 60 |
61 (provide 'lisp-float-type) | |
62 | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
63 ;;; float-sup.el ends here |