Function: calendar-ethiopic-from-absolute

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

Signature

(calendar-ethiopic-from-absolute THEDATE)

Documentation

Compute the Ethiopic equivalent for absolute date DATE.

The result is a list of the form (MONTH DAY YEAR). 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-from-absolute (thedate)
  "Compute the Ethiopic equivalent for absolute date DATE.
The result is a list of the form (MONTH DAY YEAR).
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-from-absolute thedate)))