Mercurial > emacs
annotate lisp/emacs-lisp/float-sup.el @ 93070:d94ac0f6a006
* w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
(syms_of_w32fns): Initialize them.
(HOURGLASS_ID): New constant.
(x_window_to_frame): Don't check hourglass_window.
(w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
(w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
(w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
(w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
Only change the cursor if hourglass is not active.
(Fx_create_frame): Initialize frame's current_cursor.
(hourglass_atimer): Remove.
(hourglass_started): New function.
(start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
(show_hourglass): Adapt to w32, changing argument to frame.
* w32term.h (struct w32_output): Remove hourglass_window.
Add current_cursor.
* eval.c (call_debugger, Fsignal):
* keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
(command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
(Fexecute_extended_command, cancel_hourglass_unwind):
* minibuf.c (read_minibuf):
* fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
author | Jason Rumney <jasonr@gnu.org> |
---|---|
date | Wed, 19 Mar 2008 17:02:22 +0000 |
parents | 78ee6fae0e41 |
children | 606f2d163a64 1e3a407766b9 |
rev | line source |
---|---|
51349 | 1 ;;; float-sup.el --- define some constants useful for floating point numbers. |
2 | |
74466 | 3 ;; Copyright (C) 1985, 1986, 1987, 2001, 2002, 2003, 2004, |
79704 | 4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
51349 | 5 |
6 ;; Maintainer: FSF | |
7 ;; Keywords: internal | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
78217
935157c0b596
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75738
diff
changeset
|
13 ;; the Free Software Foundation; either version 3, or (at your option) |
51349 | 14 ;; any later version. |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
51349 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;;; Code: | |
29 | |
30 ;; Provide a meaningful error message if we are running on | |
31 ;; bare (non-float) emacs. | |
32 | |
33 (if (fboundp 'atan) | |
34 nil | |
35 (error "Floating point was disabled at compile time")) | |
36 | |
37 ;; provide an easy hook to tell if we are running with floats or not. | |
38 ;; define pi and e via math-lib calls. (much less prone to killer typos.) | |
39 (defconst pi (* 4 (atan 1)) "The value of Pi (3.1415926...).") | |
75738 | 40 |
51349 | 41 ;; It's too inconvenient to make `e' a constant because it's used as |
42 ;; a temporary variable all the time. | |
43 (defvar e (exp 1) "The value of e (2.7182818...).") | |
44 | |
45 (defconst degrees-to-radians (/ pi 180.0) | |
46 "Degrees to radian conversion constant.") | |
47 (defconst radians-to-degrees (/ 180.0 pi) | |
48 "Radian to degree conversion constant.") | |
49 | |
50 ;; these expand to a single multiply by a float when byte compiled | |
51 | |
52 (defmacro degrees-to-radians (x) | |
53 "Convert ARG from degrees to radians." | |
54 (list '* (/ pi 180.0) x)) | |
55 (defmacro radians-to-degrees (x) | |
56 "Convert ARG from radians to degrees." | |
57 (list '* (/ 180.0 pi) x)) | |
58 | |
59 (provide 'lisp-float-type) | |
60 | |
52401 | 61 ;;; arch-tag: e7837072-a4af-4d08-9953-8a3e755abf9d |
51349 | 62 ;;; float-sup.el ends here |