aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/calendar/cal-french.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calendar/cal-french.el b/lisp/calendar/cal-french.el
index 8f68841d229..2f045e2da45 100644
--- a/lisp/calendar/cal-french.el
+++ b/lisp/calendar/cal-french.el
@@ -234,10 +234,10 @@ Echo French Revolutionary date unless NOECHO is t."
234 234
235(defun diary-french-date () 235(defun diary-french-date ()
236 "French calendar equivalent of date diary entry." 236 "French calendar equivalent of date diary entry."
237 (let ((f (calendar-french-date-string (calendar-cursor-to-date t)))) 237 (let ((f (calendar-french-date-string date)))
238 (if (string-equal f "") 238 (if (string-equal f "")
239 "Date is pre-French Revolution" 239 "Date is pre-French Revolution"
240 f))) 240 (format "French Revolutionary date: %s" f))))
241 241
242(provide 'cal-french) 242(provide 'cal-french)
243 243