Function: calendar-ethiopic-date-string

calendar-ethiopic-date-string is an autoloaded and byte-compiled function defined in cal-coptic.el.gz.

Signature

(calendar-ethiopic-date-string &optional THEDATE)

Documentation

String of Ethiopic date of Gregorian DATE.

Returns the empty string if DATE is pre-Ethiopic calendar. Defaults to today's date if DATE is not given.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-coptic.el.gz
;;;###cal-autoload
(defun calendar-ethiopic-date-string (&optional thedate)
  "String of Ethiopic date of Gregorian DATE.
Returns the empty string if DATE is pre-Ethiopic calendar.
Defaults to today's date if DATE is not given."
  (let ((calendar-coptic-epoch calendar-ethiopic-epoch)
        (calendar-coptic-name calendar-ethiopic-name)
        (calendar-coptic-month-name-array calendar-ethiopic-month-name-array))
    (calendar-coptic-date-string thedate)))