Function: diary-julian-date
diary-julian-date is an autoloaded and byte-compiled function defined
in cal-julian.el.gz.
Signature
(diary-julian-date)
Documentation
Julian calendar equivalent of date diary entry.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-julian.el.gz
;;;###diary-autoload
(defun diary-julian-date ()
"Julian calendar equivalent of date diary entry."
;; This function is designed to be used in sexp diary entries, and
;; may be present in users' diary files, so suppress the warning
;; about this prefix-less dynamic variable. It's called from
;; `diary-list-sexp-entries', which binds the variable.
(with-suppressed-warnings ((lexical date))
(defvar date))
(format "Julian date: %s" (calendar-julian-date-string date)))