Mercurial > emacs
annotate lisp/calendar/cal-julian.el @ 101914:fc3f7f3a49fc
Remove platform-independent -j comments.
Remove deleted --enable-cocoa-experimental-ctrl-g option.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Tue, 10 Feb 2009 03:29:00 +0000 |
parents | a9dc0e7c3f2b |
children | 1d1d5d9bd884 |
rev | line source |
---|---|
38422
7a94f1c588c4
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
24189
diff
changeset
|
1 ;;; cal-julian.el --- calendar functions for the Julian calendar |
13053 | 2 |
92608
18dc9ef91100
(calendar-absolute-from-julian): Use zerop.
Glenn Morris <rgm@gnu.org>
parents:
92587
diff
changeset
|
3 ;; Copyright (C) 1995, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007, |
100908 | 4 ;; 2008, 2009 Free Software Foundation, Inc. |
13053 | 5 |
6 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu> | |
67465
a55ee709ec8d
Update copyright pending Emacs 22.
Glenn Morris <rgm@gnu.org>
parents:
65145
diff
changeset
|
7 ;; Maintainer: Glenn Morris <rgm@gnu.org> |
13053 | 8 ;; Keywords: calendar |
9 ;; Human-Keywords: Julian calendar, Julian day number, calendar, diary | |
10 | |
11 ;; This file is part of GNU Emacs. | |
12 | |
94653
e49abd957e81
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93844
diff
changeset
|
13 ;; GNU Emacs is free software: you can redistribute it and/or modify |
13053 | 14 ;; it under the terms of the GNU General Public License as published by |
94653
e49abd957e81
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93844
diff
changeset
|
15 ;; the Free Software Foundation, either version 3 of the License, or |
e49abd957e81
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93844
diff
changeset
|
16 ;; (at your option) any later version. |
13053 | 17 |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
94653
e49abd957e81
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93844
diff
changeset
|
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
13053 | 25 |
26 ;;; Commentary: | |
27 | |
93482
103d07c67833
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93447
diff
changeset
|
28 ;; See calendar.el. |
20462
d179de7ad92e
Add reference to new Calendrical Calculations book.
Paul Eggert <eggert@twinsun.com>
parents:
17380
diff
changeset
|
29 |
13053 | 30 ;;; Code: |
31 | |
32 (require 'calendar) | |
33 | |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
34 (defun calendar-julian-to-absolute (date) |
92912 | 35 "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE. |
36 The Gregorian date Sunday, December 31, 1 BC is imaginary." | |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93783
diff
changeset
|
37 (let ((month (calendar-extract-month date)) |
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93783
diff
changeset
|
38 (year (calendar-extract-year date))) |
92912 | 39 (+ (calendar-day-number date) |
40 (if (and (zerop (% year 100)) | |
41 (not (zerop (% year 400))) | |
42 (> month 2)) | |
43 1 0) ; correct for Julian but not Gregorian leap year | |
44 (* 365 (1- year)) | |
45 (/ (1- year) 4) | |
46 -2))) | |
47 | |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
48 (define-obsolete-function-alias 'calendar-absolute-from-julian |
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
49 'calendar-julian-to-absolute "23.1") |
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
50 |
92834
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
51 ;;;###cal-autoload |
13053 | 52 (defun calendar-julian-from-absolute (date) |
53 "Compute the Julian (month day year) corresponding to the absolute DATE. | |
54 The absolute date is the number of days elapsed since the (imaginary) | |
55 Gregorian date Sunday, December 31, 1 BC." | |
92819 | 56 (let* ((approx (/ (+ date 2) 366)) ; approximation from below |
57 (year ; search forward from the approximation | |
13053 | 58 (+ approx |
59 (calendar-sum y approx | |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
60 (>= date (calendar-julian-to-absolute |
92912 | 61 (list 1 1 (1+ y)))) |
62 1))) | |
92819 | 63 (month ; search forward from January |
13053 | 64 (1+ (calendar-sum m 1 |
92912 | 65 (> date |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
66 (calendar-julian-to-absolute |
92912 | 67 (list m |
68 (if (and (= m 2) (zerop (% year 4))) | |
69 29 | |
70 (aref [31 28 31 30 31 30 31 | |
71 31 30 31 30 31] | |
72 (1- m))) | |
73 year))) | |
74 1))) | |
92819 | 75 (day ; calculate the day by subtraction |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
76 (- date (1- (calendar-julian-to-absolute (list month 1 year)))))) |
13053 | 77 (list month day year))) |
78 | |
92834
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
79 ;;;###cal-autoload |
13053 | 80 (defun calendar-julian-date-string (&optional date) |
81 "String of Julian date of Gregorian DATE. | |
82 Defaults to today's date if DATE is not given. | |
83 Driven by the variable `calendar-date-display-form'." | |
84 (calendar-date-string | |
85 (calendar-julian-from-absolute | |
92912 | 86 (calendar-absolute-from-gregorian (or date (calendar-current-date)))) |
13053 | 87 nil t)) |
88 | |
92834
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
89 ;;;###cal-autoload |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
90 (defun calendar-julian-print-date () |
13053 | 91 "Show the Julian calendar equivalent of the date under the cursor." |
92 (interactive) | |
93 (message "Julian date: %s" | |
94 (calendar-julian-date-string (calendar-cursor-to-date t)))) | |
95 | |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
96 (define-obsolete-function-alias 'calendar-print-julian-date |
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
97 'calendar-julian-print-date "23.1") |
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
98 |
92834
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
99 ;;;###cal-autoload |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
100 (defun calendar-julian-goto-date (date &optional noecho) |
92912 | 101 "Move cursor to Julian DATE; echo Julian date unless NOECHO is non-nil." |
13053 | 102 (interactive |
103 (let* ((today (calendar-current-date)) | |
104 (year (calendar-read | |
105 "Julian calendar year (>0): " | |
92587
267241a78df9
Unquote lambda functions. Add autoload cookies to functions formerly
Glenn Morris <rgm@gnu.org>
parents:
79703
diff
changeset
|
106 (lambda (x) (> x 0)) |
93844
bf9ef749c23e
Replace int-to-string with number-to-string.
Glenn Morris <rgm@gnu.org>
parents:
93809
diff
changeset
|
107 (number-to-string |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93783
diff
changeset
|
108 (calendar-extract-year |
13053 | 109 (calendar-julian-from-absolute |
110 (calendar-absolute-from-gregorian | |
111 today)))))) | |
112 (month-array calendar-month-name-array) | |
113 (completion-ignore-case t) | |
54076
9e3e3d184730
(calendar-goto-julian-date): Use assoc-string instead of
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
114 (month (cdr (assoc-string |
92912 | 115 (completing-read |
116 "Julian calendar month name: " | |
117 (mapcar 'list (append month-array nil)) | |
118 nil t) | |
54076
9e3e3d184730
(calendar-goto-julian-date): Use assoc-string instead of
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
119 (calendar-make-alist month-array 1) t))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38422
diff
changeset
|
120 (last |
13053 | 121 (if (and (zerop (% year 4)) (= month 2)) |
122 29 | |
123 (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- month)))) | |
124 (day (calendar-read | |
125 (format "Julian calendar day (%d-%d): " | |
126 (if (and (= year 1) (= month 1)) 3 1) last) | |
92587
267241a78df9
Unquote lambda functions. Add autoload cookies to functions formerly
Glenn Morris <rgm@gnu.org>
parents:
79703
diff
changeset
|
127 (lambda (x) |
92912 | 128 (and (< (if (and (= year 1) (= month 1)) 2 0) x) |
129 (<= x last)))))) | |
13053 | 130 (list (list month day year)))) |
131 (calendar-goto-date (calendar-gregorian-from-absolute | |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
132 (calendar-julian-to-absolute date))) |
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
133 (or noecho (calendar-julian-print-date))) |
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
134 |
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
135 (define-obsolete-function-alias 'calendar-goto-julian-date |
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
136 'calendar-julian-goto-date "23.1") |
13053 | 137 |
92834
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
138 ;;;###holiday-autoload |
13053 | 139 (defun holiday-julian (month day string) |
92819 | 140 "Holiday on MONTH, DAY (Julian) called STRING. |
13053 | 141 If MONTH, DAY (Julian) is visible, the value returned is corresponding |
142 Gregorian date in the form of the list (((month day year) STRING)). Returns | |
143 nil if it is not visible in the current calendar window." | |
93496
cdfc8242a666
(holiday-julian): Use calendar-nongregorian-visible-p.
Glenn Morris <rgm@gnu.org>
parents:
93482
diff
changeset
|
144 (let ((gdate (calendar-nongregorian-visible-p |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
145 month day 'calendar-julian-to-absolute |
93496
cdfc8242a666
(holiday-julian): Use calendar-nongregorian-visible-p.
Glenn Morris <rgm@gnu.org>
parents:
93482
diff
changeset
|
146 'calendar-julian-from-absolute |
cdfc8242a666
(holiday-julian): Use calendar-nongregorian-visible-p.
Glenn Morris <rgm@gnu.org>
parents:
93482
diff
changeset
|
147 ;; In the Gregorian case, we'd use the lower year when |
cdfc8242a666
(holiday-julian): Use calendar-nongregorian-visible-p.
Glenn Morris <rgm@gnu.org>
parents:
93482
diff
changeset
|
148 ;; month >= 11. In the Julian case, there is an offset |
cdfc8242a666
(holiday-julian): Use calendar-nongregorian-visible-p.
Glenn Morris <rgm@gnu.org>
parents:
93482
diff
changeset
|
149 ;; of two weeks (ie 1 Nov Greg = 19 Oct Julian). So we |
cdfc8242a666
(holiday-julian): Use calendar-nongregorian-visible-p.
Glenn Morris <rgm@gnu.org>
parents:
93482
diff
changeset
|
150 ;; use month >= 10, since it can't cause any problems. |
cdfc8242a666
(holiday-julian): Use calendar-nongregorian-visible-p.
Glenn Morris <rgm@gnu.org>
parents:
93482
diff
changeset
|
151 (lambda (m) (< m 10))))) |
cdfc8242a666
(holiday-julian): Use calendar-nongregorian-visible-p.
Glenn Morris <rgm@gnu.org>
parents:
93482
diff
changeset
|
152 (if gdate (list (list gdate string))))) |
13053 | 153 |
92834
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
154 ;;;###cal-autoload |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
155 (defun calendar-astro-to-absolute (d) |
13673
da11ffac4f8b
(calendar-absolute-from-astro): Doc fix.
Paul Eggert <eggert@twinsun.com>
parents:
13053
diff
changeset
|
156 "Absolute date of astronomical (Julian) day number D." |
13053 | 157 (- d 1721424.5)) |
158 | |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
159 (define-obsolete-function-alias 'calendar-absolute-from-astro |
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
160 'calendar-astro-to-absolute "23.1") |
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
161 |
92834
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
162 ;;;###cal-autoload |
13053 | 163 (defun calendar-astro-from-absolute (d) |
164 "Astronomical (Julian) day number of absolute date D." | |
165 (+ d 1721424.5)) | |
166 | |
92834
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
167 ;;;###cal-autoload |
13053 | 168 (defun calendar-astro-date-string (&optional date) |
169 "String of astronomical (Julian) day number after noon UTC of Gregorian DATE. | |
170 Defaults to today's date if DATE is not given." | |
93844
bf9ef749c23e
Replace int-to-string with number-to-string.
Glenn Morris <rgm@gnu.org>
parents:
93809
diff
changeset
|
171 (number-to-string |
13053 | 172 (ceiling |
173 (calendar-astro-from-absolute | |
92912 | 174 (calendar-absolute-from-gregorian (or date (calendar-current-date))))))) |
13053 | 175 |
92834
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
176 ;;;###cal-autoload |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
177 (defun calendar-astro-print-day-number () |
92819 | 178 "Show astronomical (Julian) day number after noon UTC on cursor date." |
13053 | 179 (interactive) |
180 (message | |
15069
6237f2b08205
Spelling error.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14169
diff
changeset
|
181 "Astronomical (Julian) day number (at noon UTC): %s.0" |
13053 | 182 (calendar-astro-date-string (calendar-cursor-to-date t)))) |
183 | |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
184 (define-obsolete-function-alias 'calendar-print-astro-day-number |
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
185 'calendar-astro-print-day-number "23.1") |
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
186 |
92834
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
187 ;;;###cal-autoload |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
188 (defun calendar-astro-goto-day-number (daynumber &optional noecho) |
13053 | 189 "Move cursor to astronomical (Julian) DAYNUMBER. |
92912 | 190 Echo astronomical (Julian) day number unless NOECHO is non-nil." |
13053 | 191 (interactive (list (calendar-read |
192 "Astronomical (Julian) day number (>1721425): " | |
92587
267241a78df9
Unquote lambda functions. Add autoload cookies to functions formerly
Glenn Morris <rgm@gnu.org>
parents:
79703
diff
changeset
|
193 (lambda (x) (> x 1721425))))) |
13053 | 194 (calendar-goto-date |
195 (calendar-gregorian-from-absolute | |
196 (floor | |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
197 (calendar-astro-to-absolute daynumber)))) |
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
198 (or noecho (calendar-astro-print-day-number))) |
13053 | 199 |
93636
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
200 (define-obsolete-function-alias 'calendar-goto-astro-day-number |
f5d39ae0db5b
(calendar-julian-to-absolute): Rename calendar-absolute-from-julian.
Glenn Morris <rgm@gnu.org>
parents:
93496
diff
changeset
|
201 'calendar-astro-goto-day-number "23.1") |
92834
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
202 |
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
203 (defvar date) |
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
204 |
93783 | 205 ;; To be called from diary-list-sexp-entries, where DATE is bound. |
92834
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
206 ;;;###diary-autoload |
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
207 (defun diary-julian-date () |
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
208 "Julian calendar equivalent of date diary entry." |
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
209 (format "Julian date: %s" (calendar-julian-date-string date))) |
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
210 |
93783 | 211 ;; To be called from diary-list-sexp-entries, where DATE is bound. |
92834
3e0b7b9e8f11
(diary-julian-date): Move to end.
Glenn Morris <rgm@gnu.org>
parents:
92819
diff
changeset
|
212 ;;;###diary-autoload |
13053 | 213 (defun diary-astro-day-number () |
214 "Astronomical (Julian) day number diary entry." | |
17380
ba0844956fde
(diary-astro-day-number): Change format string.
Richard M. Stallman <rms@gnu.org>
parents:
15069
diff
changeset
|
215 (format "Astronomical (Julian) day number at noon UTC: %s.0" |
13053 | 216 (calendar-astro-date-string date))) |
217 | |
218 (provide 'cal-julian) | |
219 | |
92587
267241a78df9
Unquote lambda functions. Add autoload cookies to functions formerly
Glenn Morris <rgm@gnu.org>
parents:
79703
diff
changeset
|
220 ;; arch-tag: 0520acdd-1c60-4188-9aa8-9b8c24d856ae |
13053 | 221 ;;; cal-julian.el ends here |