aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/calendar
diff options
context:
space:
mode:
authorRichard M. Stallman1994-05-22 22:14:17 +0000
committerRichard M. Stallman1994-05-22 22:14:17 +0000
commita4e104bf5ccd3e19a16cdb6bad79edff86fba3cb (patch)
tree106f991547a8ed4187816562af115ad9b3dc87b5 /lisp/calendar
parentee6f7c13b2e23119ec5932a6cf2190dca36b95c4 (diff)
downloademacs-a4e104bf5ccd3e19a16cdb6bad79edff86fba3cb.tar.gz
emacs-a4e104bf5ccd3e19a16cdb6bad79edff86fba3cb.zip
Doc fix.
Diffstat (limited to 'lisp/calendar')
-rw-r--r--lisp/calendar/cal-french.el2
-rw-r--r--lisp/calendar/holidays.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calendar/cal-french.el b/lisp/calendar/cal-french.el
index 42b04c64c72..02167c13f18 100644
--- a/lisp/calendar/cal-french.el
+++ b/lisp/calendar/cal-french.el
@@ -104,7 +104,7 @@ Gregorian date Sunday, December 31, 1 BC."
104 "Compute the French Revolutionary equivalent for absolute date DATE. 104 "Compute the French Revolutionary equivalent for absolute date DATE.
105The result is a list of the form (MONTH DAY YEAR). 105The result is a list of the form (MONTH DAY YEAR).
106The absolute date is the number of days elapsed since the 106The absolute date is the number of days elapsed since the
107(imaginary) Gregorian date Sunday, December 31, 1 BC." 107\(imaginary) Gregorian date Sunday, December 31, 1 BC."
108 (if (< date 654415) 108 (if (< date 654415)
109 (list 0 0 0);; pre-French Revolutionary date 109 (list 0 0 0);; pre-French Revolutionary date
110 (let* ((approx (/ (- date 654414) 366));; Approximation from below. 110 (let* ((approx (/ (- date 654414) 366));; Approximation from below.
diff --git a/lisp/calendar/holidays.el b/lisp/calendar/holidays.el
index 9be849fb72f..2500b60787f 100644
--- a/lisp/calendar/holidays.el
+++ b/lisp/calendar/holidays.el
@@ -209,7 +209,7 @@ STRING)). Returns nil if it is not visible in the current calendar window."
209(defun holiday-float (month dayname n string &optional day) 209(defun holiday-float (month dayname n string &optional day)
210 "Holiday on MONTH, DAYNAME (Nth occurrence, Gregorian) called STRING. 210 "Holiday on MONTH, DAYNAME (Nth occurrence, Gregorian) called STRING.
211If the Nth DAYNAME in MONTH is visible, the value returned is the list 211If the Nth DAYNAME in MONTH is visible, the value returned is the list
212(((MONTH DAY year) STRING)). 212\(((MONTH DAY year) STRING)).
213 213
214If N<0, count backward from the end of MONTH. 214If N<0, count backward from the end of MONTH.
215 215