Function: calendar-julian-print-date
calendar-julian-print-date is an autoloaded, interactive and
byte-compiled function defined in cal-julian.el.gz.
Signature
(calendar-julian-print-date)
Documentation
Show the Julian calendar equivalent of the date under the cursor.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-julian.el.gz
;;;###cal-autoload
(defun calendar-julian-print-date ()
"Show the Julian calendar equivalent of the date under the cursor."
(interactive)
(message "Julian date: %s"
(calendar-julian-date-string (calendar-cursor-to-date t))))