diff options
| author | Richard M. Stallman | 1994-05-22 22:14:17 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-22 22:14:17 +0000 |
| commit | a4e104bf5ccd3e19a16cdb6bad79edff86fba3cb (patch) | |
| tree | 106f991547a8ed4187816562af115ad9b3dc87b5 /lisp/calendar | |
| parent | ee6f7c13b2e23119ec5932a6cf2190dca36b95c4 (diff) | |
| download | emacs-a4e104bf5ccd3e19a16cdb6bad79edff86fba3cb.tar.gz emacs-a4e104bf5ccd3e19a16cdb6bad79edff86fba3cb.zip | |
Doc fix.
Diffstat (limited to 'lisp/calendar')
| -rw-r--r-- | lisp/calendar/cal-french.el | 2 | ||||
| -rw-r--r-- | lisp/calendar/holidays.el | 2 |
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. |
| 105 | The result is a list of the form (MONTH DAY YEAR). | 105 | The result is a list of the form (MONTH DAY YEAR). |
| 106 | The absolute date is the number of days elapsed since the | 106 | The 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. |
| 211 | If the Nth DAYNAME in MONTH is visible, the value returned is the list | 211 | If 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 | ||
| 214 | If N<0, count backward from the end of MONTH. | 214 | If N<0, count backward from the end of MONTH. |
| 215 | 215 | ||