diff options
author | Glenn Morris <rgm@gnu.org> | 2008-03-26 03:14:13 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-03-26 03:14:13 +0000 |
commit | 7d58cf63372e07a066831fad3400412d2d7a955c (patch) | |
tree | d6c45b2bacc647523a8f146c912924b74eb478b6 /lisp/calendar/holidays.el | |
parent | f21811af0fd8eb7b27eab34b83ce8e885664ec09 (diff) | |
download | emacs-7d58cf63372e07a066831fad3400412d2d7a955c.tar.gz |
(list-holidays): Assume atan always bound.
Diffstat (limited to 'lisp/calendar/holidays.el')
-rw-r--r-- | lisp/calendar/holidays.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/calendar/holidays.el b/lisp/calendar/holidays.el index e591ac82328..688ea9bf89e 100644 --- a/lisp/calendar/holidays.el +++ b/lisp/calendar/holidays.el @@ -162,9 +162,8 @@ The optional LABEL is used to label the buffer created." (lists (list (cons "All" calendar-holidays) - (if (fboundp 'atan) - (cons "Equinoxes/Solstices" - (list (list 'solar-equinoxes-solstices)))) + (cons "Equinoxes/Solstices" + (list (list 'solar-equinoxes-solstices))) (if general-holidays (cons "General" general-holidays)) (if local-holidays (cons "Local" local-holidays)) (if other-holidays (cons "Other" other-holidays)) |