diff options
| author | Edward M. Reingold | 1994-06-03 20:27:02 +0000 |
|---|---|---|
| committer | Edward M. Reingold | 1994-06-03 20:27:02 +0000 |
| commit | 8a7cdf3af14e2334a3c46b12fbf911a1c341df2e (patch) | |
| tree | e408f24006038c1182677f7dbf732ee0dc6698e3 | |
| parent | c68488d2f7884bbed08907e7414ab6f7638cd0b4 (diff) | |
| download | emacs-8a7cdf3af14e2334a3c46b12fbf911a1c341df2e.tar.gz emacs-8a7cdf3af14e2334a3c46b12fbf911a1c341df2e.zip | |
(solar-holidays): Revised to use the rewritten and new fcns.
| -rw-r--r-- | lisp/calendar/calendar.el | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index df525a47abc..e1355cd5442 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el | |||
| @@ -807,10 +807,8 @@ See the documentation for `calendar-holidays' for details.") | |||
| 807 | '(format "Daylight Savings Time Begins %s" | 807 | '(format "Daylight Savings Time Begins %s" |
| 808 | (if (fboundp 'atan) | 808 | (if (fboundp 'atan) |
| 809 | (solar-time-string | 809 | (solar-time-string |
| 810 | (/ calendar-daylight-savings-starts-time | 810 | (/ calendar-daylight-savings-starts-time (float 60)) |
| 811 | (float 60)) | 811 | calendar-standard-time-zone-name) |
| 812 | date | ||
| 813 | 'standard) | ||
| 814 | "")))) | 812 | "")))) |
| 815 | (funcall | 813 | (funcall |
| 816 | 'holiday-sexp | 814 | 'holiday-sexp |
| @@ -818,11 +816,8 @@ See the documentation for `calendar-holidays' for details.") | |||
| 818 | '(format "Daylight Savings Time Ends %s" | 816 | '(format "Daylight Savings Time Ends %s" |
| 819 | (if (fboundp 'atan) | 817 | (if (fboundp 'atan) |
| 820 | (solar-time-string | 818 | (solar-time-string |
| 821 | (/ (- calendar-daylight-savings-ends-time | 819 | (/ calendar-daylight-savings-ends-time (float 60)) |
| 822 | calendar-daylight-time-offset) | 820 | calendar-daylight-time-zone-name) |
| 823 | (float 60)) | ||
| 824 | date | ||
| 825 | 'daylight) | ||
| 826 | "")))) | 821 | "")))) |
| 827 | "*Sun-related holidays. | 822 | "*Sun-related holidays. |
| 828 | See the documentation for `calendar-holidays' for details.") | 823 | See the documentation for `calendar-holidays' for details.") |