Function: calendar-julian-date-string

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

Signature

(calendar-julian-date-string &optional DATE)

Documentation

String of Julian date of Gregorian DATE.

Defaults to today's date if DATE is not given. Driven by the variable calendar-date-display-form.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-julian.el.gz
;;;###cal-autoload
(defun calendar-julian-date-string (&optional date)
  "String of Julian date of Gregorian DATE.
Defaults to today's date if DATE is not given.
Driven by the variable `calendar-date-display-form'."
  (calendar-date-string
   (calendar-julian-from-absolute
    (calendar-absolute-from-gregorian (or date (calendar-current-date))))
   nil t))