diff options
author | Glenn Morris <rgm@gnu.org> | 2008-03-26 03:14:42 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-03-26 03:14:42 +0000 |
commit | 164e17e180f4252297edaf52265adbecfcca5c21 (patch) | |
tree | 1bbff5ed0466bf77ff00029aa23d841b4e247acf /lisp | |
parent | 7d58cf63372e07a066831fad3400412d2d7a955c (diff) | |
download | emacs-164e17e180f4252297edaf52265adbecfcca5c21.tar.gz emacs-164e17e180f4252297edaf52265adbecfcca5c21.tar.bz2 emacs-164e17e180f4252297edaf52265adbecfcca5c21.zip |
Remove floating-point check.
Explicitly require calendar, not cal-julian.
Explicitly require cal-dst.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/calendar/lunar.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/calendar/lunar.el b/lisp/calendar/lunar.el index 789b47eb191..468a3b25b06 100644 --- a/lisp/calendar/lunar.el +++ b/lisp/calendar/lunar.el @@ -45,11 +45,11 @@ ;;; Code: -(if (fboundp 'atan) - (require 'lisp-float-type) - (error "Lunar calculations impossible since floating point is unavailable")) - +(require 'calendar) (require 'solar) +(require 'cal-dst) +;; calendar-absolute-from-astro and v versa are cal-autoloads. +;;;(require 'cal-julian) (defun lunar-phase (index) "Local date and time of lunar phase INDEX. |