Function: calendar-ethiopic-to-absolute

calendar-ethiopic-to-absolute is a byte-compiled function defined in cal-coptic.el.gz.

Signature

(calendar-ethiopic-to-absolute THEDATE)

Documentation

Compute absolute date from Ethiopic date DATE.

The absolute date is the number of days elapsed since the (imaginary) Gregorian date Sunday, December 31, 1 BC.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-coptic.el.gz
(defun calendar-ethiopic-to-absolute (thedate)
  "Compute absolute date from Ethiopic date DATE.
The absolute date is the number of days elapsed since the (imaginary)
Gregorian date Sunday, December 31, 1 BC."
  (let ((calendar-coptic-epoch calendar-ethiopic-epoch))
    (calendar-coptic-to-absolute thedate)))