diff options
author | Glenn Morris <rgm@gnu.org> | 2008-04-07 01:59:37 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-04-07 01:59:37 +0000 |
commit | e803eab7779f54910464567216ed486d467b8537 (patch) | |
tree | 343299f3f5d0afca58b91de57d219b1711fa1c4f /lisp/calendar/solar.el | |
parent | 1b73d7f379cb1649762adb6e3c785bd1340d68a5 (diff) | |
download | emacs-e803eab7779f54910464567216ed486d467b8537.tar.gz |
Update for calendar.el name changes.
Diffstat (limited to 'lisp/calendar/solar.el')
-rw-r--r-- | lisp/calendar/solar.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/calendar/solar.el b/lisp/calendar/solar.el index 19bad4c22f9..5aeb8ca0d04 100644 --- a/lisp/calendar/solar.el +++ b/lisp/calendar/solar.el @@ -725,7 +725,7 @@ The values of `calendar-daylight-savings-starts', (/ calendar-time-zone 60.0 24.0)))) ;; Get Ephemeris Time. (date (+ date (solar-ephemeris-correction - (extract-calendar-year + (calendar-extract-year (calendar-gregorian-from-absolute (floor (calendar-astro-to-absolute @@ -979,7 +979,7 @@ solstice. These formulae are only to be used between 1000 BC and 3000 AD." (* -0.00823 z z z) (* 0.00032 z z z z))))))) -(defvar displayed-month) ; from generate-calendar +(defvar displayed-month) ; from calendar-generate (defvar displayed-year) ;;;###holiday-autoload @@ -996,7 +996,7 @@ Requires floating point." (if calendar-time-zone calendar-daylight-savings-ends)) (calendar-time-zone (if calendar-time-zone calendar-time-zone 0)) (k (progn - (increment-calendar-month m y (cond ((= 1 (% m 3)) -1) + (calendar-increment-month m y (cond ((= 1 (% m 3)) -1) ((= 2 (% m 3)) 1) (t 0))) (1- (/ m 3)))) |