Function: calendar-french-print-date

calendar-french-print-date is an autoloaded, interactive and byte-compiled function defined in cal-french.el.gz.

Signature

(calendar-french-print-date)

Documentation

Show the French Revolutionary calendar equivalent of the selected date.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-french.el.gz
;;;###cal-autoload
(defun calendar-french-print-date ()
  "Show the French Revolutionary calendar equivalent of the selected date."
  (interactive)
  (let ((f (calendar-french-date-string (calendar-cursor-to-date t))))
    (if (string-equal f "")
        (message "Date is pre-French Revolution")
      (message "French Revolutionary date: %s" f))))