Mercurial > emacs
annotate lisp/calendar/calendar.el @ 6203:e353e98cdd77
(rmail-message-filter): Doc fix.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Fri, 04 Mar 1994 23:08:31 +0000 |
parents | 56546a41a683 |
children | 5ab295d49e7f |
rev | line source |
---|---|
675
85fd29f25c75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
628
diff
changeset
|
1 ;;; calendar.el --- Calendar functions. |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
2 |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
3 ;;; Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994 Free Software |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
4 ;;; Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
5 |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
6 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu> |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2211
diff
changeset
|
7 ;; Keywords: calendar |
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2211
diff
changeset
|
8 ;; Human-Keywords: calendar, Gregorian calendar, Julian calendar, |
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2211
diff
changeset
|
9 ;; Hebrew calendar, Islamic calendar, ISO calendar, Julian day number, |
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2211
diff
changeset
|
10 ;; diary, holidays |
957 | 11 |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
12 (defun calendar-version () |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
13 (interactive) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
14 (message "Version 5.3, January 25, 1994")) |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
15 |
628 | 16 ;; This file is part of GNU Emacs. |
17 | |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY. No author or distributor | |
20 ;; accepts responsibility to anyone for the consequences of using it | |
21 ;; or for whether it serves any particular purpose or works at all, | |
22 ;; unless he says so in writing. Refer to the GNU Emacs General Public | |
23 ;; License for full details. | |
24 | |
25 ;; Everyone is granted permission to copy, modify and redistribute | |
26 ;; GNU Emacs, but only under the conditions described in the | |
27 ;; GNU Emacs General Public License. A copy of this license is | |
28 ;; supposed to have been given to you along with GNU Emacs so you | |
29 ;; can know your rights and responsibilities. It should be in a | |
30 ;; file named COPYING. Among other things, the copyright notice | |
31 ;; and this notice must be preserved on all copies. | |
32 | |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
33 ;;; Commentary: |
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
34 |
957 | 35 ;; This collection of functions implements a calendar window. It |
36 ;; generates a calendar for the current month, together with the previous | |
37 ;; and coming months, or for any other three-month period. The calendar | |
38 ;; can be scrolled forward and backward in the window to show months in | |
39 ;; the past or future; the cursor can move forward and backward by days, | |
40 ;; weeks, or months, making it possible, for instance, to jump to the | |
41 ;; date a specified number of days, weeks, or months from the date under | |
42 ;; the cursor. The user can display a list of holidays and other notable | |
43 ;; days for the period shown; the notable days can be marked on the | |
44 ;; calendar, if desired. The user can also specify that dates having | |
45 ;; corresponding diary entries (in a file that the user specifies) be | |
46 ;; marked; the diary entries for any date can be viewed in a separate | |
47 ;; window. The diary and the notable days can be viewed independently of | |
48 ;; the calendar. Dates can be translated from the (usual) Gregorian | |
49 ;; calendar to the day of the year/days remaining in year, to the ISO | |
50 ;; commercial calendar, to the Julian (old style) calendar, to the Hebrew | |
51 ;; calendar, to the Islamic calendar, to the French Revolutionary calendar, | |
52 ;; to the Mayan calendar, and to the astronomical (Julian) day number. | |
53 ;; When floating point is available, times of sunrise/sunset can be displayed, | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3448
diff
changeset
|
54 ;; as can the phases of the moon. Appointment notification for diary entries |
957 | 55 ;; is available. |
56 | |
57 ;; The following files are part of the calendar/diary code: | |
58 | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
59 ;; cal-menu.el Menu support |
2640
fc7b8160bcc9
* calendar.el: Update reference to the papers in S-P&E.
Jim Blandy <jimb@redhat.com>
parents:
2347
diff
changeset
|
60 ;; diary.el, diary-ins.el Diary functions |
957 | 61 ;; holidays.el Holiday functions |
62 ;; cal-french.el French Revolutionary calendar | |
63 ;; cal-mayan.el Mayan calendars | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
64 ;; cal-dst.el Daylight savings time rules |
957 | 65 ;; solar.el Sunrise/sunset, equinoxes/solstices |
66 ;; lunar.el Phases of the moon | |
67 ;; appt.el Appointment notification | |
628 | 68 |
69 ;; Comments, corrections, and improvements should be sent to | |
70 ;; Edward M. Reingold Department of Computer Science | |
71 ;; (217) 333-6733 University of Illinois at Urbana-Champaign | |
72 ;; reingold@cs.uiuc.edu 1304 West Springfield Avenue | |
73 ;; Urbana, Illinois 61801 | |
74 | |
75 ;; GNU Emacs users too numerous to list pointed out a variety of problems | |
76 ;; with earlier forms of the `infinite' sliding calendar and suggested some | |
77 ;; of the features included in this package. Especially significant in this | |
78 ;; regard was the suggestion of mark-diary-entries and view-diary-entries, | |
79 ;; together ideas for their implementation, by | |
80 ;; Michael S. Littman Cognitive Science Research Group | |
81 ;; (201) 829-5155 Bell Communications Research | |
82 ;; mlittman@wind.bellcore.com 445 South St. Box 1961 (2L-331) | |
83 ;; Morristown, NJ 07960 | |
84 | |
85 ;; The algorithms for the Hebrew calendar are those of the Rambam (Rabbi Moses | |
86 ;; Maimonides), from his Mishneh Torah, as implemented by | |
87 ;; Nachum Dershowitz Department of Computer Science | |
88 ;; (217) 333-4219 University of Illinois at Urbana-Champaign | |
89 ;; nachum@cs.uiuc.edu 1304 West Springfield Avenue | |
90 ;; Urbana, Illinois 61801 | |
91 | |
92 ;; Technical details of all the calendrical calculations can be found in | |
957 | 93 |
628 | 94 ;; ``Calendrical Calculations'' by Nachum Dershowitz and Edward M. Reingold, |
95 ;; Software--Practice and Experience, Volume 20, Number 9 (September, 1990), | |
957 | 96 ;; pages 899-928. ``Calendrical Calculations, Part II: Three Historical |
97 ;; Calendars'' by E. M. Reingold, N. Dershowitz, and S. M. Clamen, | |
2640
fc7b8160bcc9
* calendar.el: Update reference to the papers in S-P&E.
Jim Blandy <jimb@redhat.com>
parents:
2347
diff
changeset
|
98 ;; Software--Practice and Experience, Volume 23, Number 4 (April, 1993), |
fc7b8160bcc9
* calendar.el: Update reference to the papers in S-P&E.
Jim Blandy <jimb@redhat.com>
parents:
2347
diff
changeset
|
99 ;; pages 383-404. |
957 | 100 |
101 ;; Hard copies of these two papers can be obtained by sending email to | |
102 ;; reingold@cs.uiuc.edu with the SUBJECT "send-paper-cal" (no quotes) and | |
103 ;; the message BODY containing your mailing address (snail). | |
628 | 104 |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
105 ;;; Code: |
628 | 106 |
957 | 107 ;;;###autoload |
4861
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
108 (defvar calendar-week-start-day 0 |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
109 "*The day of the week on which a week in the calendar begins. |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
110 0 means Sunday (default), 1 means Monday, and so on.") |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
111 |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
112 ;;;###autoload |
628 | 113 (defvar view-diary-entries-initially nil |
957 | 114 "*If t, the diary entries for the current date will be displayed on entry. |
628 | 115 The diary is displayed in another window when the calendar is first displayed, |
116 if the current date is visible. The number of days of diary entries displayed | |
117 is governed by the variable `number-of-diary-entries'.") | |
118 | |
957 | 119 ;;;###autoload |
628 | 120 (defvar number-of-diary-entries 1 |
121 "*Specifies how many days of diary entries are to be displayed initially. | |
122 This variable affects the diary display when the command M-x diary is used, | |
123 or if the value of the variable `view-diary-entries-initially' is t. For | |
124 example, if the default value 1 is used, then only the current day's diary | |
125 entries will be displayed. If the value 2 is used, then both the current | |
126 day's and the next day's entries will be displayed. The value can also be | |
127 a vector such as [0 2 2 2 2 4 1]; this value will cause no diary entries to | |
128 be displayed on Sunday, the current date's and the next day's diary entries | |
129 to be displayed Monday through Thursday, Friday through Monday's entries to | |
130 be displayed on Friday, and only Saturday's entries to be displayed on | |
131 Saturday. This variable does not affect the diary display with the `d' | |
132 command from the calendar; in that case, the prefix argument controls the | |
133 number of days of diary entries displayed.") | |
134 | |
957 | 135 ;;;###autoload |
628 | 136 (defvar mark-diary-entries-in-calendar nil |
137 "*If t, dates with diary entries will be marked in the calendar window. | |
138 The marking symbol is specified by the variable `diary-entry-marker'.") | |
139 | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
140 (defvar diary-entry-marker |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
141 (if (not window-system) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
142 "+" |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
143 (require 'faces) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
144 (make-face 'diary-face) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
145 (if (x-display-color-p) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
146 (set-face-foreground 'diary-face "red") |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
147 (copy-face 'bold 'diary-face)) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
148 'diary-face) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
149 "*Used to mark dates that have diary entries. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
150 Can be either a single-character string or a face.") |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
151 |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
152 (defvar calendar-today-marker |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
153 (if (not window-system) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
154 "=" |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
155 (require 'faces) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
156 (make-face 'calendar-today-face) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
157 (set-face-underline-p 'calendar-today-face t) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
158 'calendar-today-face) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
159 "*Used to mark today's date. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
160 Can be either a single-character string or a face.") |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
161 |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
162 (defvar calendar-holiday-marker |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
163 (if (not window-system) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
164 "*" |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
165 (require 'faces) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
166 (make-face 'holiday-face) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
167 (if (x-display-color-p) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
168 (set-face-background 'holiday-face "pink") |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
169 (set-face-background 'holiday-face "black") |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
170 (set-face-foreground 'holiday-face "white")) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
171 'holiday-face) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
172 "*Used to mark notable dates in the calendar. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
173 Can be either a single-character string or a face.") |
628 | 174 |
957 | 175 ;;;###autoload |
628 | 176 (defvar view-calendar-holidays-initially nil |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
177 "*If t, holidays for current three month period will be displayed on entry. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
178 The holidays are displayed in another window when the calendar is first |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
179 displayed.") |
628 | 180 |
732 | 181 ;;;###autoload |
628 | 182 (defvar mark-holidays-in-calendar nil |
183 "*If t, dates of holidays will be marked in the calendar window. | |
184 The marking symbol is specified by the variable `calendar-holiday-marker'.") | |
185 | |
957 | 186 ;;;###autoload |
628 | 187 (defvar all-hebrew-calendar-holidays nil |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
188 "*If nil, show only major holidays from the Hebrew calendar. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
189 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
190 If nil, the only holidays from the Hebrew calendar shown will be those days of |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
191 such major interest as to appear on secular calendars. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
192 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
193 If t, the holidays shown in the calendar will include all special days that |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
194 would be shown on a complete Hebrew calendar.") |
628 | 195 |
732 | 196 ;;;###autoload |
628 | 197 (defvar all-christian-calendar-holidays nil |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
198 "*If nil, show only major holidays from the Christian calendar. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
199 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
200 If nil, the only holidays from the Christian calendar shown will be those days |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
201 of such major interest as to appear on secular calendars. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
202 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
203 If t, the holidays shown in the calendar will include all special days that |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
204 would be shown on a complete Christian calendar.") |
628 | 205 |
732 | 206 ;;;###autoload |
628 | 207 (defvar all-islamic-calendar-holidays nil |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
208 "*If nil, show only major holidays from the Islamic calendar. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
209 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
210 If nil, the only holidays from the Islamic calendar shown will be those days |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
211 of such major interest as to appear on secular calendars. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
212 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
213 If t, the holidays shown in the calendar will include all special days that |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
214 would be shown on a complete Islamic calendar.") |
628 | 215 |
957 | 216 ;;;###autoload |
217 (defvar calendar-load-hook nil | |
218 "*List of functions to be called after the calendar is first loaded. | |
219 This is the place to add key bindings to calendar-mode-map.") | |
220 | |
221 ;;;###autoload | |
628 | 222 (defvar initial-calendar-window-hook nil |
223 "*List of functions to be called when the calendar window is first opened. | |
224 The functions invoked are called after the calendar window is opened, but | |
225 once opened is never called again. Leaving the calendar with the `q' command | |
226 and reentering it will cause these functions to be called again.") | |
227 | |
957 | 228 ;;;###autoload |
628 | 229 (defvar today-visible-calendar-hook nil |
230 "*List of functions called whenever the current date is visible. | |
231 This can be used, for example, to replace today's date with asterisks; a | |
232 function `calendar-star-date' is included for this purpose: | |
233 (setq today-visible-calendar-hook 'calendar-star-date) | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
234 It can also be used to mark the current date with calendar-today-marker; |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
235 a function is also provided for this: |
628 | 236 (setq today-visible-calendar-hook 'calendar-mark-today) |
237 | |
238 The corresponding variable `today-invisible-calendar-hook' is the list of | |
239 functions called when the calendar function was called when the current | |
240 date is not visible in the window. | |
241 | |
242 Other than the use of the provided functions, the changing of any | |
243 characters in the calendar buffer by the hooks may cause the failure of the | |
244 functions that move by days and weeks.") | |
245 | |
957 | 246 ;;;###autoload |
628 | 247 (defvar today-invisible-calendar-hook nil |
248 "*List of functions called whenever the current date is not visible. | |
249 | |
250 The corresponding variable `today-visible-calendar-hook' is the list of | |
251 functions called when the calendar function was called when the current | |
252 date is visible in the window. | |
253 | |
254 Other than the use of the provided functions, the changing of any | |
255 characters in the calendar buffer by the hooks may cause the failure of the | |
256 functions that move by days and weeks.") | |
257 | |
957 | 258 ;;;###autoload |
628 | 259 (defvar diary-file "~/diary" |
260 "*Name of the file in which one's personal diary of dates is kept. | |
261 | |
262 The file's entries are lines in any of the forms | |
263 | |
264 MONTH/DAY | |
265 MONTH/DAY/YEAR | |
266 MONTHNAME DAY | |
267 MONTHNAME DAY, YEAR | |
268 DAYNAME | |
269 | |
270 at the beginning of the line; the remainder of the line is the diary entry | |
271 string for that date. MONTH and DAY are one or two digit numbers, YEAR is | |
272 a number and may be written in full or abbreviated to the final two digits. | |
273 If the date does not contain a year, it is generic and applies to any year. | |
274 DAYNAME entries apply to any date on which is on that day of the week. | |
275 MONTHNAME and DAYNAME can be spelled in full, abbreviated to three | |
276 characters (with or without a period), capitalized or not. Any of DAY, | |
277 MONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year, | |
278 respectively. | |
279 | |
280 The European style (in which the day precedes the month) can be used | |
281 instead, if you execute `european-calendar' when in the calendar, or set | |
282 `european-calendar-style' to t in your .emacs file. The European forms are | |
283 | |
284 DAY/MONTH | |
285 DAY/MONTH/YEAR | |
286 DAY MONTHNAME | |
287 DAY MONTHNAME YEAR | |
288 DAYNAME | |
289 | |
290 To revert to the default American style from the European style, execute | |
291 `american-calendar' in the calendar. | |
292 | |
293 A diary entry can be preceded by a diary-nonmarking-symbol (ordinarily `&') | |
294 to make that entry nonmarking--that is, it will not be marked on dates in | |
295 the calendar window but will appear in a diary window. | |
296 | |
297 Multiline diary entries are made by indenting lines after the first with | |
298 either a TAB or one or more spaces. | |
299 | |
300 Lines not in one the above formats are ignored. Here are some sample diary | |
301 entries (in the default American style): | |
302 | |
303 12/22/1988 Twentieth wedding anniversary!! | |
304 &1/1. Happy New Year! | |
305 10/22 Ruth's birthday. | |
306 21: Payday | |
307 Tuesday--weekly meeting with grad students at 10am | |
308 Supowit, Shen, Bitner, and Kapoor to attend. | |
309 1/13/89 Friday the thirteenth!! | |
310 &thu 4pm squash game with Lloyd. | |
311 mar 16 Dad's birthday | |
312 April 15, 1989 Income tax due. | |
313 &* 15 time cards due. | |
314 | |
315 If the first line of a diary entry consists only of the date or day name with | |
316 no trailing blanks or punctuation, then that line will not be displayed in the | |
317 diary window; only the continuation lines will be shown. For example, the | |
318 single diary entry | |
319 | |
320 02/11/1989 | |
321 Bill Blattner visits Princeton today | |
322 2pm Cognitive Studies Committee meeting | |
323 2:30-5:30 Lizzie at Lawrenceville for `Group Initiative' | |
324 4:00pm Jamie Tappenden | |
325 7:30pm Dinner at George and Ed's for Alan Ryan | |
326 7:30-10:00pm dance at Stewart Country Day School | |
327 | |
328 will appear in the diary window without the date line at the beginning. This | |
329 facility allows the diary window to look neater, but can cause confusion if | |
330 used with more than one day's entries displayed. | |
331 | |
332 Diary entries can be based on Lisp sexps. For example, the diary entry | |
333 | |
334 %%(diary-block 11 1 1990 11 10 1990) Vacation | |
335 | |
336 causes the diary entry \"Vacation\" to appear from November 1 through November | |
337 10, 1990. Other functions available are `diary-float', `diary-anniversary', | |
957 | 338 `diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date', |
339 `diary-hebrew-date', `diary-islamic-date', `diary-mayan-date', | |
340 `diary-yahrzeit', `diary-sunrise-sunset', `diary-phases-of-moon', | |
341 `diary-parasha', `diary-omer', `diary-rosh-hodesh', and | |
342 `diary-sabbath-candles'. See the documentation for the function | |
343 `list-sexp-diary-entries' for more details. | |
628 | 344 |
345 Diary entries based on the Hebrew and/or the Islamic calendar are also | |
346 possible, but because these are somewhat slow, they are ignored | |
347 unless you set the `nongregorian-diary-listing-hook' and the | |
348 `nongregorian-diary-marking-hook' appropriately. See the documentation | |
349 for these functions for details. | |
350 | |
351 Diary files can contain directives to include the contents of other files; for | |
352 details, see the documentation for the variable `list-diary-entries-hook'.") | |
353 | |
957 | 354 ;;;###autoload |
628 | 355 (defvar diary-nonmarking-symbol "&" |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
356 "*Symbol indicating that a diary entry is not to be marked in the calendar.") |
628 | 357 |
957 | 358 ;;;###autoload |
628 | 359 (defvar hebrew-diary-entry-symbol "H" |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
360 "*Symbol indicating a diary entry according to the Hebrew calendar.") |
628 | 361 |
957 | 362 ;;;###autoload |
628 | 363 (defvar islamic-diary-entry-symbol "I" |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
364 "*Symbol indicating a diary entry according to the Islamic calendar.") |
628 | 365 |
957 | 366 ;;;###autoload |
628 | 367 (defvar diary-include-string "#include" |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
368 "*The string indicating inclusion of another file of diary entries. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
369 See the documentation for the function `include-other-diary-files'.") |
628 | 370 |
957 | 371 ;;;###autoload |
628 | 372 (defvar sexp-diary-entry-symbol "%%" |
373 "*The string used to indicate a sexp diary entry in diary-file. | |
374 See the documentation for the function `list-sexp-diary-entries'.") | |
375 | |
957 | 376 ;;;###autoload |
628 | 377 (defvar abbreviated-calendar-year t |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
378 "*Interpret a two-digit year DD in a diary entry as either 19DD or 20DD. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
379 For the Gregorian calendar; similarly for the Hebrew and Islamic calendars. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
380 If this variable is nil, years must be written in full.") |
628 | 381 |
957 | 382 ;;;###autoload |
628 | 383 (defvar european-calendar-style nil |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
384 "*Use the European style of dates in the diary and in any displays. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
385 If this variable is t, a date 1/2/1990 would be interpreted as February 1, |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
386 1990. The accepted European date styles are |
628 | 387 |
388 DAY/MONTH | |
389 DAY/MONTH/YEAR | |
390 DAY MONTHNAME | |
391 DAY MONTHNAME YEAR | |
392 DAYNAME | |
393 | |
394 Names can be capitalized or not, written in full, or abbreviated to three | |
395 characters with or without a period.") | |
396 | |
957 | 397 ;;;###autoload |
628 | 398 (defvar american-date-diary-pattern |
399 '((month "/" day "[^/0-9]") | |
400 (month "/" day "/" year "[^0-9]") | |
401 (monthname " *" day "[^,0-9]") | |
402 (monthname " *" day ", *" year "[^0-9]") | |
403 (dayname "\\W")) | |
404 "*List of pseudo-patterns describing the American patterns of date used. | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3448
diff
changeset
|
405 See the documentation of diary-date-forms for an explanation.") |
628 | 406 |
957 | 407 ;;;###autoload |
628 | 408 (defvar european-date-diary-pattern |
409 '((day "/" month "[^/0-9]") | |
410 (day "/" month "/" year "[^0-9]") | |
411 (backup day " *" monthname "\\W+\\<[^*0-9]") | |
412 (day " *" monthname " *" year "[^0-9]") | |
413 (dayname "\\W")) | |
414 "*List of pseudo-patterns describing the European patterns of date used. | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3448
diff
changeset
|
415 See the documentation of diary-date-forms for an explanation.") |
628 | 416 |
417 (defvar diary-date-forms | |
418 (if european-calendar-style | |
419 european-date-diary-pattern | |
420 american-date-diary-pattern) | |
421 "*List of pseudo-patterns describing the forms of date used in the diary. | |
422 The patterns on the list must be MUTUALLY EXCLUSIVE and must should not match | |
423 any portion of the diary entry itself, just the date component. | |
424 | |
425 A pseudo-pattern is a list of regular expressions and the keywords `month', | |
426 `day', `year', `monthname', and `dayname'. The keyword `monthname' will | |
427 match the name of the month, capitalized or not, or its three-letter | |
428 abbreviation, followed by a period or not; it will also match `*'. | |
429 Similarly, `dayname' will match the name of the day, capitalized or not, or | |
430 its three-letter abbreviation, followed by a period or not. The keywords | |
431 `month', `day', and `year' will match those numerical values, preceded by | |
432 arbitrarily many zeros; they will also match `*'. | |
433 | |
434 The matching of the diary entries with the date forms is done with the | |
435 standard syntax table from Fundamental mode, but with the `*' changed so | |
436 that it is a word constituent. | |
437 | |
438 If, to be mutually exclusive, a pseudo-pattern must match a portion of the | |
439 diary entry itself, the first element of the pattern MUST be `backup'. This | |
957 | 440 directive causes the date recognizer to back up to the beginning of the |
441 current word of the diary entry, so in no case can the pattern match more than | |
442 a portion of the first word of the diary entry.") | |
443 | |
444 ;;;###autoload | |
628 | 445 (defvar european-calendar-display-form |
957 | 446 '((if dayname (concat dayname ", ")) day " " monthname " " year) |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
447 "*Pseudo-pattern governing the way a date appears in the European style. |
4652
0f5527e47955
* calendar.el (calendar-absolute-from-iso,
Jim Blandy <jimb@redhat.com>
parents:
4530
diff
changeset
|
448 See the documentation of calendar-date-display-form for an explanation.") |
628 | 449 |
957 | 450 ;;;###autoload |
628 | 451 (defvar american-calendar-display-form |
957 | 452 '((if dayname (concat dayname ", ")) monthname " " day ", " year) |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
453 "*Pseudo-pattern governing the way a date appears in the American style. |
4652
0f5527e47955
* calendar.el (calendar-absolute-from-iso,
Jim Blandy <jimb@redhat.com>
parents:
4530
diff
changeset
|
454 See the documentation of calendar-date-display-form for an explanation.") |
628 | 455 |
456 (defvar calendar-date-display-form | |
457 (if european-calendar-style | |
458 european-calendar-display-form | |
459 american-calendar-display-form) | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
460 "*Pseudo-pattern governing the way a date appears. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
461 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
462 Used by the function `calendar-date-string', a pseudo-pattern is a list of |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
463 expressions that can involve the keywords `month', `day', and `year', all |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
464 numbers in string form, and `monthname' and `dayname', both alphabetic |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
465 strings. For example, the ISO standard would use the pseudo- pattern |
628 | 466 |
467 '(year \"-\" month \"-\" day) | |
468 | |
469 while a typical American form would be | |
470 | |
471 '(month \"/\" day \"/\" (substring year -2)) | |
472 | |
473 and | |
474 | |
475 '((format \"%9s, %9s %2s, %4s\" dayname monthname day year)) | |
476 | |
477 would give the usual American style in fixed-length fields. | |
478 | |
479 See the documentation of the function `calendar-date-string'.") | |
480 | |
481 (defun european-calendar () | |
482 "Set the interpretation and display of dates to the European style." | |
483 (interactive) | |
484 (setq european-calendar-style t) | |
485 (setq calendar-date-display-form european-calendar-display-form) | |
486 (setq diary-date-forms european-date-diary-pattern) | |
487 (update-calendar-mode-line)) | |
488 | |
489 (defun american-calendar () | |
490 "Set the interpretation and display of dates to the American style." | |
491 (interactive) | |
492 (setq european-calendar-style nil) | |
493 (setq calendar-date-display-form american-calendar-display-form) | |
494 (setq diary-date-forms american-date-diary-pattern) | |
495 (update-calendar-mode-line)) | |
496 | |
957 | 497 ;;;###autoload |
498 (defvar print-diary-entries-hook 'lpr-buffer | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
499 "*List of functions called after a temporary diary buffer is prepared. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
500 The buffer shows only the diary entries currently visible in the diary |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
501 buffer. The default just does the printing. Other uses might include, for |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
502 example, rearranging the lines into order by day and time, saving the buffer |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
503 instead of deleting it, or changing the function used to do the printing.") |
628 | 504 |
732 | 505 ;;;###autoload |
628 | 506 (defvar list-diary-entries-hook nil |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
507 "*List of functions called after diary file is culled for relevant entries. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
508 It is to be used for diary entries that are not found in the diary file. |
628 | 509 |
510 A function `include-other-diary-files' is provided for use as the value of | |
511 this hook. This function enables you to use shared diary files together | |
512 with your own. The files included are specified in the diary-file by lines | |
513 of the form | |
514 | |
515 #include \"filename\" | |
516 | |
517 This is recursive; that is, #include directives in files thus included are | |
518 obeyed. You can change the \"#include\" to some other string by changing | |
519 the variable `diary-include-string'. When you use `include-other-diary-files' | |
520 as part of the list-diary-entries-hook, you will probably also want to use the | |
521 function `mark-included-diary-files' as part of the mark-diary-entries-hook. | |
522 | |
523 For example, you could use | |
524 | |
525 (setq list-diary-entries-hook | |
957 | 526 '(include-other-diary-files sort-diary-entries)) |
628 | 527 (setq diary-display-hook 'fancy-diary-display) |
528 | |
529 in your .emacs file to cause the fancy diary buffer to be displayed with | |
530 diary entries from various included files, each day's entries sorted into | |
531 lexicographic order.") | |
532 | |
732 | 533 ;;;###autoload |
4453
7f41b3648380
(diary-display-hook): Change default and fix doc string.
Richard M. Stallman <rms@gnu.org>
parents:
4339
diff
changeset
|
534 (defvar diary-hook nil |
7f41b3648380
(diary-display-hook): Change default and fix doc string.
Richard M. Stallman <rms@gnu.org>
parents:
4339
diff
changeset
|
535 "*List of functions called after the display of the diary. |
7f41b3648380
(diary-display-hook): Change default and fix doc string.
Richard M. Stallman <rms@gnu.org>
parents:
4339
diff
changeset
|
536 Can be used for appointment notification.") |
7f41b3648380
(diary-display-hook): Change default and fix doc string.
Richard M. Stallman <rms@gnu.org>
parents:
4339
diff
changeset
|
537 |
7f41b3648380
(diary-display-hook): Change default and fix doc string.
Richard M. Stallman <rms@gnu.org>
parents:
4339
diff
changeset
|
538 ;;;###autoload |
7f41b3648380
(diary-display-hook): Change default and fix doc string.
Richard M. Stallman <rms@gnu.org>
parents:
4339
diff
changeset
|
539 (defvar diary-display-hook nil |
628 | 540 "*List of functions that handle the display of the diary. |
4453
7f41b3648380
(diary-display-hook): Change default and fix doc string.
Richard M. Stallman <rms@gnu.org>
parents:
4339
diff
changeset
|
541 If nil (the default), `simple-diary-display' will be used. Use `ignore' for no |
7f41b3648380
(diary-display-hook): Change default and fix doc string.
Richard M. Stallman <rms@gnu.org>
parents:
4339
diff
changeset
|
542 diary display. |
628 | 543 |
544 Ordinarily, this just displays the diary buffer (with holidays indicated in | |
545 the mode line), if there are any relevant entries. At the time these | |
546 functions are called, the variable `diary-entries-list' is a list, in order | |
547 by date, of all relevant diary entries in the form of ((MONTH DAY YEAR) | |
548 STRING), where string is the diary entry for the given date. This can be | |
4453
7f41b3648380
(diary-display-hook): Change default and fix doc string.
Richard M. Stallman <rms@gnu.org>
parents:
4339
diff
changeset
|
549 used, for example, a different buffer for display (perhaps combined with |
7f41b3648380
(diary-display-hook): Change default and fix doc string.
Richard M. Stallman <rms@gnu.org>
parents:
4339
diff
changeset
|
550 holidays), or produce hard copy output. |
628 | 551 |
552 A function `fancy-diary-display' is provided as an alternative | |
553 choice for this hook; this function prepares a special noneditable diary | |
554 buffer with the relevant diary entries that has neat day-by-day arrangement | |
555 with headings. The fancy diary buffer will show the holidays unless the | |
556 variable `holidays-in-diary-buffer' is set to nil. Ordinarily, the fancy | |
557 diary buffer will not show days for which there are no diary entries, even | |
558 if that day is a holiday; if you want such days to be shown in the fancy | |
559 diary buffer, set the variable `diary-list-include-blanks' to t.") | |
560 | |
732 | 561 ;;;###autoload |
628 | 562 (defvar nongregorian-diary-listing-hook nil |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
563 "*List of functions called for listing diary file and included files. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
564 As the files are processed for diary entries, these functions are used to cull |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
565 relevant entries. You can use either or both of `list-hebrew-diary-entries' |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
566 and `list-islamic-diary-entries'. The documentation for these functions |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
567 describes the style of such diary entries.") |
957 | 568 |
569 ;;;###autoload | |
628 | 570 (defvar mark-diary-entries-hook nil |
571 "*List of functions called after marking diary entries in the calendar. | |
572 | |
573 A function `mark-included-diary-files' is also provided for use as the | |
574 mark-diary-entries-hook; it enables you to use shared diary files together | |
575 with your own. The files included are specified in the diary-file by lines | |
576 of the form | |
577 #include \"filename\" | |
578 This is recursive; that is, #include directives in files thus included are | |
579 obeyed. You can change the \"#include\" to some other string by changing the | |
580 variable `diary-include-string'. When you use `mark-included-diary-files' as | |
581 part of the mark-diary-entries-hook, you will probably also want to use the | |
582 function `include-other-diary-files' as part of the list-diary-entries-hook.") | |
583 | |
732 | 584 ;;;###autoload |
628 | 585 (defvar nongregorian-diary-marking-hook nil |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
586 "*List of functions called for marking diary file and included files. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
587 As the files are processed for diary entries, these functions are used to cull |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
588 relevant entries. You can use either or both of `mark-hebrew-diary-entries' |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
589 and `mark-islamic-diary-entries'. The documentation for these functions |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
590 describes the style of such diary entries.") |
628 | 591 |
732 | 592 ;;;###autoload |
628 | 593 (defvar diary-list-include-blanks nil |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
594 "*If nil, do not include days with no diary entry in the list of diary entries. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
595 Such days will then not be shown in the the fancy diary buffer, even if they |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
596 are holidays.") |
628 | 597 |
957 | 598 ;;;###autoload |
628 | 599 (defvar holidays-in-diary-buffer t |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
600 "*If t, the holidays will be indicated in the diary display. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
601 The holidays will be given in the mode line of the diary buffer, or in the |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
602 fancy diary buffer next to the date. This slows down the diary functions |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
603 somewhat; setting it to nil will make the diary display faster.") |
628 | 604 |
3448
b7d345eaae47
(calendar-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
2997
diff
changeset
|
605 (defvar calendar-mark-ring nil) |
b7d345eaae47
(calendar-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
2997
diff
changeset
|
606 |
957 | 607 ;;;###autoload |
608 (defvar general-holidays | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
609 '((holiday-fixed 1 1 "New Year's Day") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
610 (holiday-float 1 1 3 "Martin Luther King Day") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
611 (holiday-fixed 2 2 "Ground Hog Day") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
612 (holiday-fixed 2 14 "Valentine's Day") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
613 (holiday-float 2 1 3 "President's Day") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
614 (holiday-fixed 3 17 "St. Patrick's Day") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
615 (holiday-fixed 4 1 "April Fool's Day") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
616 (holiday-float 5 0 2 "Mother's Day") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
617 (holiday-float 5 1 -1 "Memorial Day") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
618 (holiday-fixed 6 14 "Flag Day") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
619 (holiday-float 6 0 3 "Father's Day") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
620 (holiday-fixed 7 4 "Independence Day") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
621 (holiday-float 9 1 1 "Labor Day") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
622 (holiday-float 10 1 2 "Columbus Day") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
623 (holiday-fixed 10 31 "Halloween") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
624 (holiday-fixed 11 11 "Veteran's Day") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
625 (holiday-float 11 4 4 "Thanksgiving")) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
626 "*General holidays. Default value is for the United States. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
627 See the documentation for `calendar-holidays' for details.") |
957 | 628 |
629 ;;;###autoload | |
630 (defvar local-holidays nil | |
631 "*Local holidays. | |
632 See the documentation for `calendar-holidays' for details.") | |
633 | |
634 ;;;###autoload | |
635 (defvar other-holidays nil | |
636 "*User defined holidays. | |
637 See the documentation for `calendar-holidays' for details.") | |
638 | |
639 ;;;###autoload | |
4161
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
640 (defvar hebrew-holidays-1 |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
641 '((holiday-rosh-hashanah-etc) |
628 | 642 (if all-hebrew-calendar-holidays |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
643 (holiday-julian |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
644 11 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
645 (let* ((m displayed-month) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
646 (y displayed-year) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
647 (year)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
648 (increment-calendar-month m y -1) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
649 (let ((year (extract-calendar-year |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
650 (calendar-julian-from-absolute |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
651 (calendar-absolute-from-gregorian |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
652 (list m 1 y)))))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
653 (if (zerop (% (1+ year) 4)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
654 22 |
4161
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
655 21))) "\"Tal Umatar\" (evening)")))) |
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
656 |
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
657 ;;;###autoload |
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
658 (defvar hebrew-holidays-2 |
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
659 '((if all-hebrew-calendar-holidays |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
660 (holiday-hanukkah) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
661 (holiday-hebrew 9 25 "Hanukkah")) |
628 | 662 (if all-hebrew-calendar-holidays |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
663 (holiday-hebrew |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
664 10 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
665 (let ((h-year (extract-calendar-year |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
666 (calendar-hebrew-from-absolute |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
667 (calendar-absolute-from-gregorian |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
668 (list displayed-month 28 displayed-year)))))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
669 (if (= (% (calendar-absolute-from-hebrew (list 10 10 h-year)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
670 7) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
671 6) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
672 11 10)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
673 "Tzom Teveth")) |
628 | 674 (if all-hebrew-calendar-holidays |
4161
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
675 (holiday-hebrew 11 15 "Tu B'Shevat")))) |
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
676 |
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
677 ;;;###autoload |
4530
c14a75fce9c9
(hebrew-holidays-3): Fix misspelling in var name.
Richard M. Stallman <rms@gnu.org>
parents:
4453
diff
changeset
|
678 (defvar hebrew-holidays-3 |
4161
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
679 '((if all-hebrew-calendar-holidays |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
680 (holiday-hebrew |
628 | 681 11 |
682 (let ((m displayed-month) | |
683 (y displayed-year)) | |
684 (increment-calendar-month m y 1) | |
685 (let* ((h-year (extract-calendar-year | |
686 (calendar-hebrew-from-absolute | |
687 (calendar-absolute-from-gregorian | |
688 (list m | |
689 (calendar-last-day-of-month m y) | |
690 y))))) | |
691 (s-s | |
692 (calendar-hebrew-from-absolute | |
693 (if (= | |
694 (% (calendar-absolute-from-hebrew | |
695 (list 7 1 h-year)) | |
696 7) | |
697 6) | |
698 (calendar-dayname-on-or-before | |
699 6 (calendar-absolute-from-hebrew | |
700 (list 11 17 h-year))) | |
701 (calendar-dayname-on-or-before | |
702 6 (calendar-absolute-from-hebrew | |
703 (list 11 16 h-year)))))) | |
704 (day (extract-calendar-day s-s))) | |
705 day)) | |
4161
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
706 "Shabbat Shirah")))) |
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
707 |
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
708 ;;;###autoload |
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
709 (defvar hebrew-holidays-4 |
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
710 '((holiday-passover-etc) |
628 | 711 (if (and all-hebrew-calendar-holidays |
712 (let* ((m displayed-month) | |
713 (y displayed-year) | |
714 (year)) | |
715 (increment-calendar-month m y -1) | |
716 (let ((year (extract-calendar-year | |
717 (calendar-julian-from-absolute | |
718 (calendar-absolute-from-gregorian | |
719 (list m 1 y)))))) | |
720 (= 21 (% year 28))))) | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
721 (holiday-julian 3 26 "Kiddush HaHamah")) |
628 | 722 (if all-hebrew-calendar-holidays |
4161
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
723 (holiday-tisha-b-av-etc)))) |
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
724 |
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
725 ;;;###autoload |
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
726 (defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 |
8e236d4ce64b
(hebrew-holidays): Split into 4 sub-variables.
Richard M. Stallman <rms@gnu.org>
parents:
4086
diff
changeset
|
727 hebrew-holidays-3 hebrew-holidays-4) |
957 | 728 "*Jewish holidays. |
729 See the documentation for `calendar-holidays' for details.") | |
730 | |
731 ;;;###autoload | |
732 (defvar christian-holidays | |
733 '((if all-christian-calendar-holidays | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
734 (holiday-fixed 1 6 "Epiphany")) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
735 (holiday-easter-etc) |
957 | 736 (if all-christian-calendar-holidays |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
737 (holiday-greek-orthodox-easter)) |
957 | 738 (if all-christian-calendar-holidays |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
739 (holiday-fixed 8 15 "Assumption")) |
957 | 740 (if all-christian-calendar-holidays |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
741 (holiday-advent)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
742 (holiday-fixed 12 25 "Christmas") |
957 | 743 (if all-christian-calendar-holidays |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
744 (holiday-julian 12 25 "Eastern Orthodox Christmas"))) |
957 | 745 "*Christian holidays. |
746 See the documentation for `calendar-holidays' for details.") | |
747 | |
748 ;;;###autoload | |
749 (defvar islamic-holidays | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
750 '((holiday-islamic |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
751 1 1 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
752 (format "Islamic New Year %d" |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
753 (let ((m displayed-month) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
754 (y displayed-year)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
755 (increment-calendar-month m y 1) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
756 (extract-calendar-year |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
757 (calendar-islamic-from-absolute |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
758 (calendar-absolute-from-gregorian |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
759 (list |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
760 m (calendar-last-day-of-month m y) y))))))) |
628 | 761 (if all-islamic-calendar-holidays |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
762 (holiday-islamic 1 10 "Ashura")) |
628 | 763 (if all-islamic-calendar-holidays |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
764 (holiday-islamic 3 12 "Mulad-al-Nabi")) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
765 (if all-islamic-calendar-holidays |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
766 (holiday-islamic 7 26 "Shab-e-Mi'raj")) |
628 | 767 (if all-islamic-calendar-holidays |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
768 (holiday-islamic 8 15 "Shab-e-Bara't")) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
769 (holiday-islamic 9 1 "Ramadan Begins") |
628 | 770 (if all-islamic-calendar-holidays |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
771 (holiday-islamic 9 27 "Shab-e Qadr")) |
628 | 772 (if all-islamic-calendar-holidays |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
773 (holiday-islamic 10 1 "Id-al-Fitr")) |
628 | 774 (if all-islamic-calendar-holidays |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
775 (holiday-islamic 12 10 "Id-al-Adha"))) |
957 | 776 "*Islamic holidays. |
777 See the documentation for `calendar-holidays' for details.") | |
778 | |
779 ;;;###autoload | |
780 (defvar solar-holidays | |
781 '((if (fboundp 'atan) | |
782 (solar-equinoxes-solstices)) | |
5009
bf77303bd714
(solar-holidays): Change top-level progn to an if.
Richard M. Stallman <rms@gnu.org>
parents:
4861
diff
changeset
|
783 (if (progn |
bf77303bd714
(solar-holidays): Change top-level progn to an if.
Richard M. Stallman <rms@gnu.org>
parents:
4861
diff
changeset
|
784 (require 'cal-dst) |
bf77303bd714
(solar-holidays): Change top-level progn to an if.
Richard M. Stallman <rms@gnu.org>
parents:
4861
diff
changeset
|
785 t) |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
786 (funcall |
5009
bf77303bd714
(solar-holidays): Change top-level progn to an if.
Richard M. Stallman <rms@gnu.org>
parents:
4861
diff
changeset
|
787 'holiday-sexp |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
788 calendar-daylight-savings-starts |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
789 '(format "Daylight Savings Time Begins %s" |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
790 (if (fboundp 'atan) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
791 (solar-time-string |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
792 (/ calendar-daylight-savings-starts-time |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
793 (float 60)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
794 date |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
795 'standard) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
796 "")))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
797 (funcall |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
798 'holiday-sexp |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
799 calendar-daylight-savings-ends |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
800 '(format "Daylight Savings Time Ends %s" |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
801 (if (fboundp 'atan) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
802 (solar-time-string |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
803 (/ (- calendar-daylight-savings-ends-time |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
804 calendar-daylight-time-offset) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
805 (float 60)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
806 date |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
807 'daylight) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
808 "")))) |
957 | 809 "*Sun-related holidays. |
810 See the documentation for `calendar-holidays' for details.") | |
811 | |
812 (defvar calendar-holidays | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
813 (append general-holidays local-holidays other-holidays |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
814 christian-holidays hebrew-holidays islamic-holidays |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
815 solar-holidays) |
957 | 816 "*List of notable days for the command M-x holidays. |
817 | |
818 Additional holidays are easy to add to the list, just put them in the list | |
819 `other-holidays' in your .emacs file. Similarly, by setting any of | |
820 `general-holidays', `local-holidays' `christian-holidays', `hebrew-holidays', | |
821 `islamic-holidays', or `solar-holidays' to nil in your .emacs file, you can | |
822 eliminate unwanted categories of holidays. The intention is that (in the US) | |
823 `local-holidays' be set in site-init.el and `other-holidays' be set by the | |
824 user. | |
825 | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
826 Entries on the list are expressions that return (possibly empty) lists of |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
827 items of the form ((month day year) string) of a holiday in the in the |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
828 three-month period centered around `displayed-month' of `displayed-year'. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
829 Several basic functions are provided for this purpose: |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
830 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
831 (holiday-fixed MONTH DAY STRING) is a fixed date on the Gregorian calendar |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
832 (holiday-float MONTH DAYNAME K STRING &optional day) is the Kth DAYNAME in |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
833 MONTH on the Gregorian calendar (0 for Sunday, |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
834 etc.); K<0 means count back from the end of the |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
835 month. An optional parameter DAY means the Kth |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
836 DAYNAME after/before MONTH DAY. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
837 (holiday-hebrew MONTH DAY STRING) a fixed date on the Hebrew calendar |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
838 (holiday-islamic MONTH DAY STRING) a fixed date on the Islamic calendar |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
839 (holiday-julian MONTH DAY STRING) a fixed date on the Julian calendar |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
840 (holiday-sexp SEXP STRING) SEXP is a Gregorian-date-valued expression |
957 | 841 in the variable `year'; if it evaluates to |
842 a visible date, that's the holiday; if it | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
843 evaluates to nil, there's no holiday. STRING |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
844 is an expression in the variable `date'. |
628 | 845 |
846 For example, to add Bastille Day, celebrated in France on July 14, add | |
847 | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
848 (holiday-fixed 7 14 \"Bastille Day\") |
628 | 849 |
850 to the list. To add Hurricane Supplication Day, celebrated in the Virgin | |
851 Islands on the fourth Monday in August, add | |
852 | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
853 (holiday-float 8 1 4 \"Hurricane Supplication Day\") |
628 | 854 |
855 to the list (the last Monday would be specified with `-1' instead of `4'). | |
957 | 856 To add the last day of Hanukkah to the list, use |
857 | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
858 (holiday-hebrew 10 2 \"Last day of Hanukkah\") |
628 | 859 |
860 since the Hebrew months are numbered with 1 starting from Nisan, while to | |
861 add the Islamic feast celebrating Mohammed's birthday use | |
862 | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
863 (holiday-islamic 3 12 \"Mohammed's Birthday\") |
628 | 864 |
865 since the Islamic months are numbered from 1 starting with Muharram. To | |
866 add Thomas Jefferson's birthday, April 2, 1743 (Julian), use | |
867 | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
868 (holiday-julian 4 2 \"Jefferson's Birthday\") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
869 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
870 To include a holiday conditionally, use the sexp form or a conditional. For |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
871 example, to include American presidential elections, which occur on the first |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
872 Tuesday after the first Monday in November of years divisible by 4, add |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
873 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
874 (holiday-sexp |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
875 (if (zerop (% year 4)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
876 (calendar-gregorian-from-absolute |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
877 (1+ (calendar-dayname-on-or-before |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
878 1 (+ 6 (calendar-absolute-from-gregorian |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
879 (list 11 1 year))))))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
880 \"US Presidential Election\") |
957 | 881 |
882 or | |
883 | |
628 | 884 (if (zerop (% displayed-year 4)) |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
885 (holiday-fixed 11 |
628 | 886 (extract-calendar-day |
887 (calendar-gregorian-from-absolute | |
888 (1+ (calendar-dayname-on-or-before | |
889 1 (+ 6 (calendar-absolute-from-gregorian | |
890 (list 11 1 displayed-year))))))) | |
891 \"US Presidential Election\")) | |
892 | |
893 to the list. To include the phases of the moon, add | |
894 | |
895 (lunar-phases) | |
896 | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
897 to the holiday list, where `lunar-phases' is an Emacs-Lisp function that |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
898 you've written to return a (possibly empty) list of the relevant VISIBLE dates |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
899 with descriptive strings such as |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
900 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
901 (((2 6 1989) \"New Moon\") ((2 12 1989) \"First Quarter Moon\") ... ).") |
628 | 902 |
903 (defconst calendar-buffer "*Calendar*" | |
904 "Name of the buffer used for the calendar.") | |
905 | |
906 (defconst holiday-buffer "*Holidays*" | |
907 "Name of the buffer used for the displaying the holidays.") | |
908 | |
909 (defconst fancy-diary-buffer "*Fancy Diary Entries*" | |
910 "Name of the buffer used for the optional fancy display of the diary.") | |
911 | |
912 (defmacro increment-calendar-month (mon yr n) | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
913 "Move the variables MON and YR to the month and year by N months. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
914 Forward if N is positive or backward if N is negative." |
628 | 915 (` (let (( macro-y (+ (* (, yr) 12) (, mon) -1 (, n) ))) |
916 (setq (, mon) (1+ (% macro-y 12) )) | |
917 (setq (, yr) (/ macro-y 12))))) | |
918 | |
919 (defmacro calendar-for-loop (var from init to final do &rest body) | |
920 "Execute a for loop." | |
921 (` (let (( (, var) (1- (, init)) )) | |
922 (while (>= (, final) (setq (, var) (1+ (, var)))) | |
923 (,@ body))))) | |
924 | |
925 (defmacro calendar-sum (index initial condition expression) | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
926 "For INDEX = INITIAL et seq, as long as CONDITION holds, sum EXPRESSION." |
628 | 927 (` (let (( (, index) (, initial)) |
928 (sum 0)) | |
929 (while (, condition) | |
930 (setq sum (+ sum (, expression) )) | |
931 (setq (, index) (1+ (, index)))) | |
932 sum))) | |
933 | |
732 | 934 ;; The following macros are for speed; the code would be clearer if they |
935 ;; were functions, but they can be called thousands of times when | |
936 ;; looking up holidays or processing the diary. Here, for example, are the | |
937 ;; numbers of calls to calendar/diary/holiday functions in preparing the | |
938 ;; fancy diary display, for a moderately complex diary file, with functions | |
939 ;; used instead of macros. There were a total of 10000 such calls: | |
940 ;; | |
941 ;; 1934 extract-calendar-month | |
942 ;; 1852 extract-calendar-year | |
943 ;; 1819 extract-calendar-day | |
944 ;; 845 calendar-leap-year-p | |
945 ;; 837 calendar-day-number | |
946 ;; 775 calendar-absolute-from-gregorian | |
947 ;; 346 calendar-last-day-of-month | |
948 ;; 286 hebrew-calendar-last-day-of-month | |
949 ;; 188 hebrew-calendar-leap-year-p | |
950 ;; 180 hebrew-calendar-elapsed-days | |
951 ;; 163 hebrew-calendar-last-month-of-year | |
952 ;; 66 calendar-date-compare | |
953 ;; 65 hebrew-calendar-days-in-year | |
954 ;; 60 calendar-absolute-from-julian | |
955 ;; 50 calendar-absolute-from-hebrew | |
956 ;; 43 calendar-date-equal | |
957 ;; 38 calendar-gregorian-from-absolute | |
958 ;; . | |
959 ;; . | |
960 ;; . | |
961 ;; | |
962 ;; The use of these seven macros eliminates the overhead of 92% of the function | |
957 | 963 ;; calls; it's faster this way. For clarity, the defun form of each is given |
964 ;; in comments after the defmacro form. | |
732 | 965 |
628 | 966 (defmacro extract-calendar-month (date) |
967 "Extract the month part of DATE which has the form (month day year)." | |
968 (` (car (, date)))) | |
957 | 969 ;;(defun extract-calendar-month (date) |
970 ;; "Extract the month part of DATE which has the form (month day year)." | |
971 ;; (car date)) | |
628 | 972 |
973 (defmacro extract-calendar-day (date) | |
974 "Extract the day part of DATE which has the form (month day year)." | |
975 (` (car (cdr (, date))))) | |
957 | 976 ;;(defun extract-calendar-day (date) |
977 ;; "Extract the day part of DATE which has the form (month day year)." | |
978 ;; (car (cdr date))) | |
628 | 979 |
980 (defmacro extract-calendar-year (date) | |
981 "Extract the year part of DATE which has the form (month day year)." | |
982 (` (car (cdr (cdr (, date)))))) | |
957 | 983 ;;(defun extract-calendar-year (date) |
984 ;; "Extract the year part of DATE which has the form (month day year)." | |
985 ;; (car (cdr (cdr date)))) | |
628 | 986 |
732 | 987 (defmacro calendar-leap-year-p (year) |
988 "Returns t if YEAR is a Gregorian leap year." | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
989 (` (and |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
990 (zerop (% (, year) 4)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
991 (or (not (zerop (% (, year) 100))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
992 (zerop (% (, year) 400)))))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
993 ;;(defun calendar-leap-year-p (year) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
994 ;; "Returns t if YEAR is a Gregorian leap year." |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
995 ;; (and |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
996 ;; (zerop (% year 4)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
997 ;; (or ((not (zerop (% year 100)))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
998 ;; (zerop (% year 400))))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
999 ;; |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1000 ;; The foregoing is a bit faster, but not as clear as the following: |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1001 ;; |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1002 ;;(defmacro calendar-leap-year-p (year) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1003 ;; "Returns t if YEAR is a Gregorian leap year." |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1004 ;; (` (or |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1005 ;; (and (= (% (, year) 4) 0) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1006 ;; (/= (% (, year) 100) 0)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1007 ;; (= (% (, year) 400) 0)))) |
957 | 1008 ;;(defun calendar-leap-year-p (year) |
1009 ;; "Returns t if YEAR is a Gregorian leap year." | |
1010 ;; (or | |
1011 ;; (and (= (% year 4) 0) | |
1012 ;; (/= (% year 100) 0)) | |
1013 ;; (= (% year 400) 0))) | |
732 | 1014 |
1015 (defmacro calendar-last-day-of-month (month year) | |
1016 "The last day in MONTH during YEAR." | |
1017 (` (if (and | |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1018 (= (, month) 2) |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1019 (, (macroexpand (` (calendar-leap-year-p (, year)))))) |
732 | 1020 29 |
1021 (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- (, month)))))) | |
957 | 1022 ;;(defun calendar-last-day-of-month (month year) |
1023 ;; "The last day in MONTH during YEAR." | |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1024 ;; (if (and (= month 2) (calendar-leap-year-p year)) |
957 | 1025 ;; 29 |
1026 ;; (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- month)))) | |
732 | 1027 |
1028 (defmacro calendar-day-number (date) | |
1029 "Return the day number within the year of the date DATE. | |
1030 For example, (calendar-day-number '(1 1 1987)) returns the value 1, | |
1031 while (calendar-day-number '(12 31 1980)) returns 366." | |
1032 ;; | |
1033 ;; An explanation of the calculation can be found in PascAlgorithms by | |
1034 ;; Edward and Ruth Reingold, Scott-Foresman/Little, Brown, 1988. | |
1035 ;; | |
1036 (` (let* ((month (, (macroexpand (` (extract-calendar-month (, date)))))) | |
1037 (day (, (macroexpand (` (extract-calendar-day (, date)))))) | |
1038 (year (, (macroexpand (` (extract-calendar-year (, date)))))) | |
1039 (day-of-year (+ day (* 31 (1- month))))) | |
1040 (if (> month 2) | |
1041 (progn | |
1042 (setq day-of-year (- day-of-year (/ (+ 23 (* 4 month)) 10))) | |
1043 (if (, (macroexpand (` (calendar-leap-year-p year)))) | |
1044 (setq day-of-year (1+ day-of-year))))) | |
1045 day-of-year))) | |
957 | 1046 ;;(defun calendar-day-number (date) |
1047 ;; "Return the day number within the year of the date DATE. | |
1048 ;;For example, (calendar-day-number '(1 1 1987)) returns the value 1, | |
1049 ;;while (calendar-day-number '(12 31 1980)) returns 366." | |
1050 ;; (let* ((month (extract-calendar-month date)) | |
1051 ;; (day (extract-calendar-day date)) | |
1052 ;; (year (extract-calendar-year date)) | |
1053 ;; (day-of-year (+ day (* 31 (1- month))))) | |
1054 ;; (if (> month 2) | |
1055 ;; (progn | |
1056 ;; (setq day-of-year (- day-of-year (/ (+ 23 (* 4 month)) 10))) | |
1057 ;; (if (calendar-leap-year-p year) | |
1058 ;; (setq day-of-year (1+ day-of-year))))) | |
1059 ;; day-of-year)) | |
732 | 1060 |
1061 (defmacro calendar-absolute-from-gregorian (date) | |
1062 "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE. | |
1063 The Gregorian date Sunday, December 31, 1 BC is imaginary." | |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1064 (` (let ((prior-years |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1065 (1- (, (macroexpand (` (extract-calendar-year (, date)))))))) |
732 | 1066 (+ (, (macroexpand (` (calendar-day-number (, date)))));; Days this year |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1067 (* 365 prior-years);; + Days in prior years |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1068 (/ prior-years 4);; + Julian leap years |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1069 (- (/ prior-years 100));; - century years |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1070 (/ prior-years 400)))));; + Gregorian leap years |
957 | 1071 ;;(defun calendar-absolute-from-gregorian (date) |
1072 ;; "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE. | |
1073 ;;The Gregorian date Sunday, December 31, 1 BC is imaginary." | |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1074 ;; (let ((prior-years (1- (extract-calendar-year date)))) |
957 | 1075 ;; (+ (calendar-day-number date);; Days this year |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1076 ;; (* 365 prior-years);; + Days in prior years |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1077 ;; (/ prior-years 4);; + Julian leap years |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1078 ;; (- (/ prior-years 100));; - century years |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1079 ;; (/ prior-years 400))));; + Gregorian leap years |
732 | 1080 |
675
85fd29f25c75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
628
diff
changeset
|
1081 ;;;###autoload |
628 | 1082 (defun calendar (&optional arg) |
1083 "Display a three-month calendar in another window. | |
1084 The three months appear side by side, with the current month in the middle | |
1085 surrounded by the previous and next months. The cursor is put on today's date. | |
1086 | |
957 | 1087 If called with an optional prefix argument, prompts for month and year. |
1088 | |
628 | 1089 This function is suitable for execution in a .emacs file; appropriate setting |
1090 of the variable `view-diary-entries-initially' will cause the diary entries for | |
1091 the current date to be displayed in another window. The value of the variable | |
1092 `number-of-diary-entries' controls the number of days of diary entries | |
1093 displayed upon initial display of the calendar. | |
1094 | |
1095 An optional prefix argument ARG causes the calendar displayed to be ARG | |
1096 months in the future if ARG is positive or in the past if ARG is negative; | |
1097 in this case the cursor goes on the first day of the month. | |
1098 | |
1099 Once in the calendar window, future or past months can be moved into view. | |
1100 Arbitrary months can be displayed, or the calendar can be scrolled forward | |
1101 or backward. | |
1102 | |
1103 The cursor can be moved forward or backward by one day, one week, one month, | |
1104 or one year. All of these commands take prefix arguments which, when negative, | |
1105 cause movement in the opposite direction. For convenience, the digit keys | |
1106 and the minus sign are automatically prefixes. The window is replotted as | |
1107 necessary to display the desired date. | |
1108 | |
1109 Diary entries can be marked on the calendar or displayed in another window. | |
1110 | |
1111 Use M-x describe-mode for details of the key bindings in the calendar window. | |
1112 | |
1113 The Gregorian calendar is assumed. | |
1114 | |
957 | 1115 After loading the calendar, the hooks given by the variable |
1116 `calendar-load-hook' are run. This the place to add key bindings to the | |
1117 calendar-mode-map. | |
1118 | |
628 | 1119 After preparing the calendar window initially, the hooks given by the variable |
1120 `initial-calendar-window-hook' are run. | |
1121 | |
1122 The hooks given by the variable `today-visible-calendar-hook' are run | |
1123 everytime the calendar window gets scrolled, if the current date is visible | |
1124 in the window. If it is not visible, the hooks given by the variable | |
1125 `today-invisible-calendar-hook' are run. Thus, for example, setting | |
1126 `today-visible-calendar-hook' to 'calendar-star-date will cause today's date | |
1127 to be replaced by asterisks to highlight it whenever it is in the window." | |
1128 (interactive "P") | |
1129 (set-buffer (get-buffer-create calendar-buffer)) | |
1130 (calendar-mode) | |
1131 (setq calendar-window-configuration (current-window-configuration)) | |
957 | 1132 (let* ((completion-ignore-case t) |
1133 (pop-up-windows t) | |
1134 (split-height-threshold 1000) | |
1135 (date (calendar-current-date)) | |
1136 (month | |
1137 (if arg | |
1138 (cdr (assoc | |
1139 (capitalize | |
1140 (completing-read | |
1141 "Month name: " | |
1142 (mapcar 'list (append calendar-month-name-array nil)) | |
1143 nil t)) | |
1144 (calendar-make-alist calendar-month-name-array))) | |
1145 (extract-calendar-month date))) | |
1146 (year | |
1147 (if arg | |
1148 (calendar-read | |
1149 "Year (>0): " | |
1150 '(lambda (x) (> x 0)) | |
1151 (int-to-string (extract-calendar-year date))) | |
1152 (extract-calendar-year date)))) | |
628 | 1153 (pop-to-buffer calendar-buffer) |
957 | 1154 (generate-calendar-window month year) |
1155 (if (and view-diary-entries-initially (calendar-date-is-visible-p date)) | |
1156 (view-diary-entries | |
1157 (if (vectorp number-of-diary-entries) | |
1158 (aref number-of-diary-entries (calendar-day-of-week date)) | |
1159 number-of-diary-entries)))) | |
1160 (let* ((diary-buffer (get-file-buffer diary-file)) | |
1161 (diary-window (if diary-buffer (get-buffer-window diary-buffer))) | |
1162 (split-height-threshold (if diary-window 2 1000))) | |
1163 (if view-calendar-holidays-initially | |
1164 (list-calendar-holidays))) | |
628 | 1165 (run-hooks 'initial-calendar-window-hook)) |
1166 | |
1167 (autoload 'view-diary-entries "diary" | |
1168 "Prepare and display a buffer with diary entries. | |
1169 Searches the file diary-file for entries that match ARG days starting with | |
1170 the date indicated by the cursor position in the displayed three-month | |
1171 calendar." | |
1172 t) | |
1173 | |
957 | 1174 (autoload 'calendar-sunrise-sunset "solar" |
1175 "Local time of sunrise and sunset for date under cursor." | |
1176 t) | |
1177 | |
1178 (autoload 'calendar-phases-of-moon "lunar" | |
1179 "Create a buffer of the phases of the moon for the current calendar window." | |
1180 t) | |
1181 | |
1182 (autoload 'calendar-print-french-date "cal-french" | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1183 "Show the French Revolutionary calendar equivalent of the date under the cursor." |
957 | 1184 t) |
1185 | |
1186 (autoload 'calendar-goto-french-date "cal-french" | |
1187 "Move cursor to French Revolutionary date." | |
1188 t) | |
1189 | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1190 (autoload 'calendar-french-date-string "cal-french" |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1191 "String of French Revolutionary date of Gregorian DATE." |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1192 t) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1193 |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1194 (autoload 'calendar-mayan-date-string "cal-mayan" |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1195 "String of Mayan date of Gregorian DATE." |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1196 t) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1197 |
957 | 1198 (autoload 'calendar-print-mayan-date "cal-mayan" |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1199 "Show the Mayan long count, Tzolkin, and Haab equivalents of the date under the cursor." |
957 | 1200 t) |
1201 | |
1202 (autoload 'calendar-goto-mayan-long-count-date "cal-mayan" | |
1203 "Move cursor to Mayan long count date." | |
1204 t) | |
1205 | |
1206 (autoload 'calendar-next-haab-date "cal-mayan" | |
1207 "Move cursor to next instance of Mayan Haab date." | |
1208 t) | |
1209 | |
1210 (autoload 'calendar-previous-haab-date "cal-mayan" | |
1211 "Move cursor to previous instance of Mayan Haab date." | |
1212 t) | |
1213 | |
1214 (autoload 'calendar-next-tzolkin-date "cal-mayan" | |
1215 "Move cursor to next instance of Mayan Tzolkin date." | |
1216 t) | |
1217 | |
1218 (autoload 'calendar-previous-tzolkin-date "cal-mayan" | |
1219 "Move cursor to previous instance of Mayan Tzolkin date." | |
1220 t) | |
1221 | |
1222 (autoload 'calendar-next-calendar-round-date "cal-mayan" | |
1223 "Move cursor to next instance of Mayan Haab/Tzoklin combination." | |
1224 t) | |
1225 | |
1226 (autoload 'calendar-previous-calendar-round-date "cal-mayan" | |
1227 "Move cursor to previous instance of Mayan Haab/Tzoklin combination." | |
1228 t) | |
1229 | |
628 | 1230 (autoload 'show-all-diary-entries "diary" |
1231 "Show all of the diary entries in the diary-file. | |
1232 This function gets rid of the selective display of the diary-file so that | |
1233 all entries, not just some, are visible. If there is no diary buffer, one | |
1234 is created." | |
1235 t) | |
1236 | |
1237 (autoload 'mark-diary-entries "diary" | |
1238 "Mark days in the calendar window that have diary entries. | |
1239 Each entry in diary-file visible in the calendar window is marked." | |
1240 t) | |
1241 | |
2326
cac023fe9d13
* diary-insert.el: Change the name to diary-ins.el.
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
1242 (autoload 'insert-diary-entry "diary-ins" |
628 | 1243 "Insert a diary entry for the date indicated by point." |
1244 t) | |
1245 | |
2326
cac023fe9d13
* diary-insert.el: Change the name to diary-ins.el.
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
1246 (autoload 'insert-weekly-diary-entry "diary-ins" |
628 | 1247 "Insert a weekly diary entry for the day of the week indicated by point." |
1248 t) | |
1249 | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1250 |
2326
cac023fe9d13
* diary-insert.el: Change the name to diary-ins.el.
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
1251 (autoload 'insert-monthly-diary-entry "diary-ins" |
628 | 1252 "Insert a monthly diary entry for the day of the month indicated by point." |
1253 t) | |
1254 | |
2326
cac023fe9d13
* diary-insert.el: Change the name to diary-ins.el.
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
1255 (autoload 'insert-yearly-diary-entry "diary-ins" |
628 | 1256 "Insert an annual diary entry for the day of the year indicated by point." |
1257 t) | |
1258 | |
2326
cac023fe9d13
* diary-insert.el: Change the name to diary-ins.el.
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
1259 (autoload 'insert-anniversary-diary-entry "diary-ins" |
628 | 1260 "Insert an anniversary diary entry for the date indicated by point." |
1261 t) | |
1262 | |
2326
cac023fe9d13
* diary-insert.el: Change the name to diary-ins.el.
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
1263 (autoload 'insert-block-diary-entry "diary-ins" |
628 | 1264 "Insert a block diary entry for the dates indicated by point and mark." |
1265 t) | |
1266 | |
2326
cac023fe9d13
* diary-insert.el: Change the name to diary-ins.el.
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
1267 (autoload 'insert-cyclic-diary-entry "diary-ins" |
628 | 1268 "Insert a cyclic diary entry starting at the date indicated by point." |
1269 t) | |
1270 | |
2326
cac023fe9d13
* diary-insert.el: Change the name to diary-ins.el.
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
1271 (autoload 'insert-hebrew-diary-entry "diary-ins" |
628 | 1272 "Insert a diary entry for the Hebrew date corresponding to the date |
1273 indicated by point." | |
1274 t) | |
1275 | |
2326
cac023fe9d13
* diary-insert.el: Change the name to diary-ins.el.
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
1276 (autoload 'insert-monthly-hebrew-diary-entry "diary-ins" |
628 | 1277 "Insert a monthly diary entry for the day of the Hebrew month corresponding |
1278 to the date indicated by point." | |
1279 t) | |
1280 | |
2326
cac023fe9d13
* diary-insert.el: Change the name to diary-ins.el.
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
1281 (autoload 'insert-yearly-hebrew-diary-entry "diary-ins" |
628 | 1282 "Insert an annual diary entry for the day of the Hebrew year corresponding |
1283 to the date indicated by point." | |
1284 t) | |
1285 | |
2326
cac023fe9d13
* diary-insert.el: Change the name to diary-ins.el.
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
1286 (autoload 'insert-islamic-diary-entry "diary-ins" |
628 | 1287 "Insert a diary entry for the Islamic date corresponding to the date |
1288 indicated by point." | |
1289 t) | |
1290 | |
2326
cac023fe9d13
* diary-insert.el: Change the name to diary-ins.el.
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
1291 (autoload 'insert-monthly-islamic-diary-entry "diary-ins" |
628 | 1292 "Insert a monthly diary entry for the day of the Islamic month corresponding |
1293 to the date indicated by point." | |
1294 t) | |
1295 | |
2326
cac023fe9d13
* diary-insert.el: Change the name to diary-ins.el.
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
1296 (autoload 'insert-yearly-islamic-diary-entry "diary-ins" |
628 | 1297 "Insert an annual diary entry for the day of the Islamic year corresponding |
1298 to the date indicated by point." | |
1299 t) | |
1300 | |
1301 (autoload 'list-calendar-holidays "holidays" | |
1302 "Create a buffer containing the holidays for the current calendar window. | |
1303 The holidays are those in the list `calendar-notable-days'. Returns t if any | |
1304 holidays are found, nil if not." | |
1305 t) | |
1306 | |
1307 (autoload 'mark-calendar-holidays "holidays" | |
1308 "Mark notable days in the calendar window." | |
1309 t) | |
1310 | |
1311 (autoload 'calendar-cursor-holidays "holidays" | |
1312 "Find holidays for the date specified by the cursor in the calendar window." | |
1313 t) | |
1314 | |
957 | 1315 (defun generate-calendar-window (&optional mon yr) |
1316 "Generate the calendar window for the current date. | |
1317 Or, for optional MON, YR." | |
628 | 1318 (let* ((buffer-read-only nil) |
1319 (today (calendar-current-date)) | |
1320 (month (extract-calendar-month today)) | |
1321 (day (extract-calendar-day today)) | |
1322 (year (extract-calendar-year today)) | |
957 | 1323 (today-visible |
1324 (or (not mon) | |
1325 (let ((offset (calendar-interval mon yr month year))) | |
1326 (and (<= offset 1) (>= offset -1))))) | |
628 | 1327 (day-in-week (calendar-day-of-week today))) |
1328 (update-calendar-mode-line) | |
957 | 1329 (if mon |
1330 (generate-calendar mon yr) | |
1331 (generate-calendar month year)) | |
628 | 1332 (calendar-cursor-to-visible-date |
1333 (if today-visible today (list displayed-month 1 displayed-year))) | |
1334 (set-buffer-modified-p nil) | |
1335 (or (one-window-p t) | |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
1336 (/= (frame-width) (window-width)) |
628 | 1337 (shrink-window (- (window-height) 9))) |
1338 (sit-for 0) | |
1339 (and mark-holidays-in-calendar | |
1340 (mark-calendar-holidays) | |
1341 (sit-for 0)) | |
1342 (unwind-protect | |
1343 (if mark-diary-entries-in-calendar (mark-diary-entries)) | |
1344 (if today-visible | |
1345 (run-hooks 'today-visible-calendar-hook) | |
1346 (run-hooks 'today-invisible-calendar-hook))))) | |
1347 | |
1348 (defun generate-calendar (month year) | |
1349 "Generate a three-month Gregorian calendar centered around MONTH, YEAR." | |
1350 (if (< (+ month (* 12 (1- year))) 2) | |
1351 (error "Months before February, 1 AD are not available.")) | |
1352 (setq displayed-month month) | |
1353 (setq displayed-year year) | |
1354 (erase-buffer) | |
1355 (increment-calendar-month month year -1) | |
1356 (calendar-for-loop i from 0 to 2 do | |
1357 (generate-calendar-month month year (+ 5 (* 25 i))) | |
1358 (increment-calendar-month month year 1))) | |
1359 | |
1360 (defun generate-calendar-month (month year indent) | |
1361 "Produce a calendar for MONTH, YEAR on the Gregorian calendar. | |
1362 The calendar is inserted in the buffer starting at the line on which point | |
1363 is currently located, but indented INDENT spaces. The indentation is done | |
1364 from the first character on the line and does not disturb the first INDENT | |
1365 characters on the line." | |
4861
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1366 (let* ((blank-days;; at start of month |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1367 (calendar-mod |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1368 (- (calendar-day-of-week (list month 1 year)) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1369 calendar-week-start-day) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1370 7)) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1371 (last (calendar-last-day-of-month month year))) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1372 (goto-char (point-min)) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1373 (calendar-insert-indented |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1374 (calendar-string-spread |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1375 (list "" (format "%s %d" (calendar-month-name month) year) "") ? 20) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1376 indent t) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1377 (calendar-insert-indented "" indent);; Go to proper spot |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1378 (calendar-for-loop i from 0 to 6 do |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1379 (insert (substring (aref calendar-day-name-array |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1380 (calendar-mod (+ calendar-week-start-day i) 7)) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1381 0 2)) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1382 (insert " ")) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1383 (calendar-insert-indented "" 0 t);; Force onto following line |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1384 (calendar-insert-indented "" indent);; Go to proper spot |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1385 ;; Add blank days before the first of the month |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1386 (calendar-for-loop i from 1 to blank-days do (insert " ")) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1387 ;; Put in the days of the month |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1388 (calendar-for-loop i from 1 to last do |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1389 (insert (format "%2d " i)) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1390 (and (zerop (calendar-mod (+ i blank-days) 7)) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1391 (/= i last) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1392 (calendar-insert-indented "" 0 t) ;; Force onto following line |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
1393 (calendar-insert-indented "" indent)))));; Go to proper spot |
628 | 1394 |
1395 (defun calendar-insert-indented (string indent &optional newline) | |
1396 "Insert STRING at column INDENT. | |
1397 If the optional parameter NEWLINE is t, leave point at start of next line, | |
1398 inserting a newline if there was no next line; otherwise, leave point after | |
1399 the inserted text. Value is always t." | |
1400 ;; Try to move to that column. | |
1401 (move-to-column indent) | |
1402 ;; If line is too short, indent out to that column. | |
1403 (if (< (current-column) indent) | |
1404 (indent-to indent)) | |
1405 (insert string) | |
1406 ;; Advance to next line, if requested. | |
1407 (if newline | |
1408 (progn | |
1409 (end-of-line) | |
1410 (if (eobp) | |
1411 (newline) | |
1412 (forward-line 1)))) | |
1413 t) | |
1414 | |
1415 (defun redraw-calendar () | |
1416 "Redraw the calendar display." | |
1417 (interactive) | |
1418 (let ((cursor-date (calendar-cursor-to-date))) | |
957 | 1419 (generate-calendar-window displayed-month displayed-year) |
628 | 1420 (calendar-cursor-to-visible-date cursor-date))) |
1421 | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1422 (defvar calendar-debug-sexp nil |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1423 "*Turn debugging on when evaluating a sexp in the diary or holiday list.") |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1424 |
628 | 1425 (defvar calendar-mode-map nil) |
1426 (if calendar-mode-map | |
1427 nil | |
1428 (setq calendar-mode-map (make-sparse-keymap)) | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1429 (if window-system (require 'cal-menu)) |
628 | 1430 (calendar-for-loop i from 0 to 9 do |
1431 (define-key calendar-mode-map (int-to-string i) 'digit-argument)) | |
1432 (let ((l (list 'narrow-to-region 'mark-word 'mark-sexp 'mark-paragraph | |
1433 'mark-defun 'mark-whole-buffer 'mark-page 'kill-region | |
1434 'copy-region-as-kill 'downcase-region 'upcase-region | |
1435 'capitalize-region 'write-region))) | |
1436 (while (car l) | |
5771
96fd8c241b42
(calendar-mode-map): Pass (keymap) as KEYMAP arg to where-is-internal.
Richard M. Stallman <rms@gnu.org>
parents:
5710
diff
changeset
|
1437 (let ((k (where-is-internal (car l) '(keymap)))) |
628 | 1438 (while (car k) |
1439 (define-key calendar-mode-map (car k) 'calendar-not-implemented) | |
1440 (setq k (cdr k))) | |
1441 (setq l (cdr l))))) | |
1442 (define-key calendar-mode-map "-" 'negative-argument) | |
1443 (define-key calendar-mode-map "\C-x>" 'scroll-calendar-right) | |
4652
0f5527e47955
* calendar.el (calendar-absolute-from-iso,
Jim Blandy <jimb@redhat.com>
parents:
4530
diff
changeset
|
1444 (define-key calendar-mode-map [prior] 'scroll-calendar-right-three-months) |
5272
00beab2bf9f0
(calendar-mode-map): Put back C-v and M-v bindings.
Richard M. Stallman <rms@gnu.org>
parents:
5009
diff
changeset
|
1445 (define-key calendar-mode-map "\ev" 'scroll-calendar-right-three-months) |
628 | 1446 (define-key calendar-mode-map "\C-x<" 'scroll-calendar-left) |
4652
0f5527e47955
* calendar.el (calendar-absolute-from-iso,
Jim Blandy <jimb@redhat.com>
parents:
4530
diff
changeset
|
1447 (define-key calendar-mode-map [next] 'scroll-calendar-left-three-months) |
5272
00beab2bf9f0
(calendar-mode-map): Put back C-v and M-v bindings.
Richard M. Stallman <rms@gnu.org>
parents:
5009
diff
changeset
|
1448 (define-key calendar-mode-map "\C-v" 'scroll-calendar-left-three-months) |
628 | 1449 (define-key calendar-mode-map "\C-b" 'calendar-backward-day) |
1450 (define-key calendar-mode-map "\C-p" 'calendar-backward-week) | |
957 | 1451 (define-key calendar-mode-map "\e{" 'calendar-backward-month) |
628 | 1452 (define-key calendar-mode-map "\C-x[" 'calendar-backward-year) |
1453 (define-key calendar-mode-map "\C-f" 'calendar-forward-day) | |
1454 (define-key calendar-mode-map "\C-n" 'calendar-forward-week) | |
2688
a906a3882b9f
(calendar-mode-map): Add arrow key bindings.
Richard M. Stallman <rms@gnu.org>
parents:
2640
diff
changeset
|
1455 (define-key calendar-mode-map [left] 'calendar-backward-day) |
a906a3882b9f
(calendar-mode-map): Add arrow key bindings.
Richard M. Stallman <rms@gnu.org>
parents:
2640
diff
changeset
|
1456 (define-key calendar-mode-map [up] 'calendar-backward-week) |
a906a3882b9f
(calendar-mode-map): Add arrow key bindings.
Richard M. Stallman <rms@gnu.org>
parents:
2640
diff
changeset
|
1457 (define-key calendar-mode-map [right] 'calendar-forward-day) |
a906a3882b9f
(calendar-mode-map): Add arrow key bindings.
Richard M. Stallman <rms@gnu.org>
parents:
2640
diff
changeset
|
1458 (define-key calendar-mode-map [down] 'calendar-forward-week) |
957 | 1459 (define-key calendar-mode-map "\e}" 'calendar-forward-month) |
628 | 1460 (define-key calendar-mode-map "\C-x]" 'calendar-forward-year) |
1461 (define-key calendar-mode-map "\C-a" 'calendar-beginning-of-week) | |
1462 (define-key calendar-mode-map "\C-e" 'calendar-end-of-week) | |
1463 (define-key calendar-mode-map "\ea" 'calendar-beginning-of-month) | |
1464 (define-key calendar-mode-map "\ee" 'calendar-end-of-month) | |
1465 (define-key calendar-mode-map "\e<" 'calendar-beginning-of-year) | |
1466 (define-key calendar-mode-map "\e>" 'calendar-end-of-year) | |
1467 (define-key calendar-mode-map "\C-@" 'calendar-set-mark) | |
4339
2b1aa3183d79
(calendar-mode-map): Bind C-SPC.
Richard M. Stallman <rms@gnu.org>
parents:
4161
diff
changeset
|
1468 ;; Many people are used to typing C-SPC and getting C-@. |
2b1aa3183d79
(calendar-mode-map): Bind C-SPC.
Richard M. Stallman <rms@gnu.org>
parents:
4161
diff
changeset
|
1469 (define-key calendar-mode-map [?\C-\ ] 'calendar-set-mark) |
628 | 1470 (define-key calendar-mode-map "\C-x\C-x" 'calendar-exchange-point-and-mark) |
957 | 1471 (define-key calendar-mode-map "\e=" 'calendar-count-days-region) |
1472 (define-key calendar-mode-map "gd" 'calendar-goto-date) | |
1473 (define-key calendar-mode-map "gj" 'calendar-goto-julian-date) | |
1474 (define-key calendar-mode-map "ga" 'calendar-goto-astro-day-number) | |
1475 (define-key calendar-mode-map "gh" 'calendar-goto-hebrew-date) | |
1476 (define-key calendar-mode-map "gi" 'calendar-goto-islamic-date) | |
1477 (define-key calendar-mode-map "gc" 'calendar-goto-iso-date) | |
1478 (define-key calendar-mode-map "gf" 'calendar-goto-french-date) | |
1479 (define-key calendar-mode-map "gml" 'calendar-goto-mayan-long-count-date) | |
1480 (define-key calendar-mode-map "gmpc" 'calendar-previous-calendar-round-date) | |
1481 (define-key calendar-mode-map "gmnc" 'calendar-next-calendar-round-date) | |
1482 (define-key calendar-mode-map "gmph" 'calendar-previous-haab-date) | |
1483 (define-key calendar-mode-map "gmnh" 'calendar-next-haab-date) | |
1484 (define-key calendar-mode-map "gmpt" 'calendar-previous-tzolkin-date) | |
1485 (define-key calendar-mode-map "gmnt" 'calendar-next-tzolkin-date) | |
1486 (define-key calendar-mode-map "S" 'calendar-sunrise-sunset) | |
1487 (define-key calendar-mode-map "M" 'calendar-phases-of-moon) | |
1488 (define-key calendar-mode-map " " 'scroll-other-window) | |
628 | 1489 (define-key calendar-mode-map "\C-c\C-l" 'redraw-calendar) |
957 | 1490 (define-key calendar-mode-map "." 'calendar-current-month) |
1491 (define-key calendar-mode-map "o" 'calendar-other-month) | |
1492 (define-key calendar-mode-map "q" 'exit-calendar) | |
1493 (define-key calendar-mode-map "a" 'list-calendar-holidays) | |
1494 (define-key calendar-mode-map "h" 'calendar-cursor-holidays) | |
1495 (define-key calendar-mode-map "x" 'mark-calendar-holidays) | |
1496 (define-key calendar-mode-map "u" 'calendar-unmark) | |
1497 (define-key calendar-mode-map "m" 'mark-diary-entries) | |
1498 (define-key calendar-mode-map "d" 'view-diary-entries) | |
1499 (define-key calendar-mode-map "s" 'show-all-diary-entries) | |
1500 (define-key calendar-mode-map "pd" 'calendar-print-day-of-year) | |
1501 (define-key calendar-mode-map "pc" 'calendar-print-iso-date) | |
1502 (define-key calendar-mode-map "pj" 'calendar-print-julian-date) | |
1503 (define-key calendar-mode-map "pa" 'calendar-print-astro-day-number) | |
1504 (define-key calendar-mode-map "ph" 'calendar-print-hebrew-date) | |
1505 (define-key calendar-mode-map "pi" 'calendar-print-islamic-date) | |
1506 (define-key calendar-mode-map "pf" 'calendar-print-french-date) | |
1507 (define-key calendar-mode-map "pm" 'calendar-print-mayan-date) | |
1508 (define-key calendar-mode-map "id" 'insert-diary-entry) | |
1509 (define-key calendar-mode-map "iw" 'insert-weekly-diary-entry) | |
1510 (define-key calendar-mode-map "im" 'insert-monthly-diary-entry) | |
1511 (define-key calendar-mode-map "iy" 'insert-yearly-diary-entry) | |
1512 (define-key calendar-mode-map "ia" 'insert-anniversary-diary-entry) | |
1513 (define-key calendar-mode-map "ib" 'insert-block-diary-entry) | |
1514 (define-key calendar-mode-map "ic" 'insert-cyclic-diary-entry) | |
1515 (define-key calendar-mode-map "ihd" 'insert-hebrew-diary-entry) | |
1516 (define-key calendar-mode-map "ihm" 'insert-monthly-hebrew-diary-entry) | |
1517 (define-key calendar-mode-map "ihy" 'insert-yearly-hebrew-diary-entry) | |
1518 (define-key calendar-mode-map "iid" 'insert-islamic-diary-entry) | |
1519 (define-key calendar-mode-map "iim" 'insert-monthly-islamic-diary-entry) | |
1520 (define-key calendar-mode-map "iiy" 'insert-yearly-islamic-diary-entry) | |
1521 (define-key calendar-mode-map "?" 'describe-calendar-mode)) | |
628 | 1522 |
1523 (defun describe-calendar-mode () | |
1524 "Create a help buffer with a brief description of the calendar-mode." | |
1525 (interactive) | |
1526 (with-output-to-temp-buffer "*Help*" | |
1527 (princ | |
1528 (format | |
1529 "Calendar Mode:\nFor a complete description, type %s\n%s\n" | |
1530 (substitute-command-keys | |
1531 "\\<calendar-mode-map>\\[describe-mode] from within the calendar") | |
1532 (substitute-command-keys "\\{calendar-mode-map}"))) | |
1533 (print-help-return-message))) | |
1534 | |
1535 ;; Calendar mode is suitable only for specially formatted data. | |
1536 (put 'calendar-mode 'mode-class 'special) | |
1537 | |
1538 (defvar calendar-mode-line-format | |
957 | 1539 (list |
1540 (substitute-command-keys "\\<calendar-mode-map>\\[scroll-calendar-left]") | |
1541 "Calendar" | |
5829
d266967cc1cc
(calendar-mode-line-format): Change "current" to "today".
Richard M. Stallman <rms@gnu.org>
parents:
5771
diff
changeset
|
1542 (substitute-command-keys "\\<calendar-mode-map>\\[describe-calendar-mode] help/\\[calendar-other-month] other/\\[calendar-current-month] today") |
957 | 1543 '(calendar-date-string (calendar-current-date) t) |
1544 (substitute-command-keys "\\<calendar-mode-map>\\[scroll-calendar-right]")) | |
628 | 1545 "The mode line of the calendar buffer.") |
1546 | |
1547 (defun calendar-mode () | |
957 | 1548 "A major mode for the calendar window. |
628 | 1549 |
1550 The commands for cursor movement are:\\<calendar-mode-map> | |
1551 | |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1552 \\[calendar-forward-day] one day forward \\[calendar-backward-day] one day backward |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1553 \\[calendar-forward-week] one week forward \\[calendar-backward-week] one week backward |
628 | 1554 \\[calendar-forward-month] one month forward \\[calendar-backward-month] one month backward |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1555 \\[calendar-forward-year] one year forward \\[calendar-backward-year] one year backward |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1556 \\[calendar-beginning-of-week] beginning of week \\[calendar-end-of-week] end of week |
628 | 1557 \\[calendar-beginning-of-month] beginning of month \\[calendar-end-of-month] end of month |
1558 \\[calendar-beginning-of-year] beginning of year \\[calendar-end-of-year] end of year | |
957 | 1559 |
1560 \\[calendar-goto-date] go to date | |
1561 | |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1562 \\[calendar-goto-julian-date] go to Julian date \\[calendar-goto-astro-day-number] go to astronomical (Julian) day number |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1563 \\[calendar-goto-hebrew-date] go to Hebrew date \\[calendar-goto-islamic-date] go to Islamic date |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1564 \\[calendar-goto-iso-date] go to ISO date \\[calendar-goto-french-date] go to French Revolutionary date |
957 | 1565 |
1566 \\[calendar-goto-mayan-long-count-date] go to Mayan Long Count date | |
1567 \\[calendar-next-haab-date] go to next occurrence of Mayan Haab date | |
1568 \\[calendar-previous-haab-date] go to previous occurrence of Mayan Haab date | |
1569 \\[calendar-next-tzolkin-date] go to next occurrence of Mayan Tzolkin date | |
1570 \\[calendar-previous-tzolkin-date] go to previous occurrence of Mayan Tzolkin date | |
1571 \\[calendar-next-calendar-round-date] go to next occurrence of Mayan Calendar Round date | |
1572 \\[calendar-previous-calendar-round-date] go to previous occurrence of Mayan Calendar Round date | |
628 | 1573 |
1574 You can mark a date in the calendar and switch the point and mark: | |
957 | 1575 |
628 | 1576 \\[calendar-set-mark] mark date \\[calendar-exchange-point-and-mark] exchange point and mark |
957 | 1577 |
628 | 1578 You can determine the number of days (inclusive) between the point and mark by |
957 | 1579 |
628 | 1580 \\[calendar-count-days-region] count days in the region |
1581 | |
1582 The commands for calendar movement are: | |
1583 | |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1584 \\[scroll-calendar-right] scroll one month right \\[scroll-calendar-left] scroll one month left |
628 | 1585 \\[scroll-calendar-right-three-months] scroll 3 months right \\[scroll-calendar-left-three-months] scroll 3 months left |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1586 \\[calendar-current-month] display current month \\[calendar-other-month] display another month |
628 | 1587 |
1588 Whenever it makes sense, the above commands take prefix arguments that | |
1589 multiply their affect. For convenience, the digit keys and the minus sign | |
1590 are bound to digit-argument, so they need not be prefixed with ESC. | |
1591 | |
1592 If the calendar window somehow becomes corrupted, it can be regenerated with | |
1593 | |
1594 \\[redraw-calendar] redraw the calendar | |
1595 | |
1596 The following commands deal with holidays and other notable days: | |
1597 | |
1598 \\[calendar-cursor-holidays] give holidays for the date specified by the cursor | |
1599 \\[mark-calendar-holidays] mark notable days | |
1600 \\[calendar-unmark] unmark dates | |
1601 \\[list-calendar-holidays] display notable days | |
1602 | |
1603 The command M-x holidays causes the notable dates for the current month, and | |
1604 the preceding and succeeding months, to be displayed, independently of the | |
1605 calendar. | |
1606 | |
1607 The following commands control the diary: | |
1608 | |
1609 \\[mark-diary-entries] mark diary entries \\[calendar-unmark] unmark dates | |
1610 \\[view-diary-entries] display diary entries \\[show-all-diary-entries] show all diary entries | |
1611 \\[print-diary-entries] print diary entries | |
1612 | |
1613 Displaying the diary entries causes the diary entries from the diary-file | |
3448
b7d345eaae47
(calendar-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
2997
diff
changeset
|
1614 \(for the date indicated by the cursor in the calendar window) to be |
628 | 1615 displayed in another window. This function takes an integer argument that |
1616 specifies the number of days of calendar entries to be displayed, starting | |
1617 with the date indicated by the cursor. | |
1618 | |
1619 The command \\[print-diary-entries] prints the diary buffer (as it appears) | |
1620 on the line printer. | |
1621 | |
1622 The command M-x diary causes the diary entries for the current date to be | |
1623 displayed, independently of the calendar. The number of days of entries is | |
1624 governed by number-of-diary-entries. | |
1625 | |
1626 The format of the entries in the diary file is described in the | |
1627 documentation string for the variable diary-file. | |
1628 | |
1629 When diary entries are in view in the window, they can be edited. It is | |
1630 important to keep in mind that the buffer displayed contains the entire | |
1631 diary file, but with portions of it concealed from view. This means, for | |
1632 instance, that the forward-char command can put the cursor at what appears | |
1633 to be the end of the line, but what is in reality the middle of some | |
1634 concealed line. BE CAREFUL WHEN EDITING THE DIARY ENTRIES! (Inserting | |
1635 additional lines or adding/deleting characters in the middle of a visible | |
1636 line will not cause problems; watch out for end-of-line, however--it may | |
1637 put you at the end of a concealed line far from where the cursor appears to | |
1638 be!) BEFORE EDITING THE DIARY IT IS BEST TO DISPLAY THE ENTIRE FILE WITH | |
1639 show-all-diary-entries. BE SURE TO WRITE THE FILE BEFORE EXITING FROM THE | |
1640 CALENDAR. | |
1641 | |
1642 The following commands assist in making diary entries: | |
1643 | |
1644 \\[insert-diary-entry] insert a diary entry for the selected date | |
1645 \\[insert-weekly-diary-entry] insert a diary entry for the selected day of the week | |
1646 \\[insert-monthly-diary-entry] insert a diary entry for the selected day of the month | |
1647 \\[insert-yearly-diary-entry] insert a diary entry for the selected day of the year | |
1648 \\[insert-block-diary-entry] insert a diary entry for the block days between point and mark | |
1649 \\[insert-anniversary-diary-entry] insert an anniversary diary entry for the selected date | |
1650 \\[insert-cyclic-diary-entry] insert a cyclic diary entry | |
1651 | |
1652 There are corresponding commands to assist in making Hebrew- or Islamic-date | |
1653 diary entries: | |
1654 | |
1655 \\[insert-hebrew-diary-entry] insert a diary entry for the Hebrew date corresponding | |
1656 to the selected date | |
1657 \\[insert-monthly-hebrew-diary-entry] insert a diary entry for the day of the Hebrew month | |
1658 corresponding to the selected day | |
1659 \\[insert-yearly-hebrew-diary-entry] insert a diary entry for the day of the Hebrew year | |
1660 corresponding to the selected day | |
1661 \\[insert-islamic-diary-entry] insert a diary entry for the Islamic date corresponding | |
1662 to the selected date | |
1663 \\[insert-monthly-islamic-diary-entry] insert a diary entry for the day of the Islamic month | |
1664 corresponding to the selected day | |
1665 \\[insert-yearly-islamic-diary-entry] insert a diary entry for the day of the Islamic year | |
1666 corresponding to the selected day | |
1667 | |
1668 All of the diary entry commands make nonmarking entries when given a prefix | |
1669 argument; with no prefix argument, the diary entries are marking. | |
1670 | |
1671 The day number in the year and the number of days remaining in the year can be | |
1672 determined by | |
1673 | |
957 | 1674 \\[calendar-print-day-of-year] show day number and the number of days remaining in the year |
1675 | |
1676 Equivalent dates on the ISO commercial, Julian, Hebrew, Islamic, French | |
1677 Revolutionary, and Mayan calendars can be determined by | |
1678 | |
1679 \\[calendar-print-iso-date] show equivalent date on the ISO commercial calendar | |
1680 \\[calendar-print-julian-date] show equivalent date on the Julian calendar | |
1681 \\[calendar-print-hebrew-date] show equivalent date on the Hebrew calendar | |
1682 \\[calendar-print-islamic-date] show equivalent date on the Islamic calendar | |
1683 \\[calendar-print-french-date] show equivalent date on the French Revolutionary calendar | |
1684 \\[calendar-print-mayan-date] show equivalent date on the Mayan calendar | |
1685 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3448
diff
changeset
|
1686 The astronomical (Julian) day number of a date is found with |
957 | 1687 |
1688 \\[calendar-print-astro-day-number] show equivalent astronomical (Julian) day number | |
1689 | |
1690 To find the times of sunrise and sunset and lunar phases use | |
1691 | |
1692 \\[calendar-sunrise-sunset] show times of sunrise and sunset | |
1693 \\[calendar-phases-of-moon] show times of quarters of the moon | |
1694 | |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1695 The times given will be for location `calendar-location-name' at latitude |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1696 `calendar-latitude', longitude `calendar-longitude'; set these variables for |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1697 your location. The following variables are also consulted, and you must set |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1698 them if your system does not initialize them properly: `calendar-time-zone', |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1699 `calendar-daylight-time-offset', `calendar-standard-time-zone-name', |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1700 `calendar-daylight-time-zone-name', `calendar-daylight-savings-starts', |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1701 `calendar-daylight-savings-ends', `calendar-daylight-savings-starts-time', |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
1702 `calendar-daylight-savings-ends-time'. |
628 | 1703 |
1704 To exit from the calendar use | |
1705 | |
1706 \\[exit-calendar] exit from calendar | |
1707 | |
1708 The variable `view-diary-entries-initially', whose default is nil, can be | |
1709 set to to t cause diary entries for the current date will be displayed in | |
1710 another window when the calendar is first displayed, if the current date is | |
1711 visible. The variable `number-of-diary-entries' controls number of days of | |
1712 diary entries that will be displayed initially or with the command M-x | |
1713 diary. For example, if the default value 1 is used, then only the current | |
1714 day's diary entries will be displayed. If the value 2 is used, both the | |
1715 current day's and the next day's entries will be displayed. The value can | |
1716 also be a vector: If the value is [0 2 2 2 2 4 1] then no diary entries | |
1717 will be displayed on Sunday, the current date's and the next day's diary | |
1718 entries will be displayed Monday through Thursday, Friday through Monday's | |
1719 entries will be displayed on Friday, while on Saturday only that day's | |
1720 entries will be displayed. | |
1721 | |
957 | 1722 The variable `view-calendar-holidays-initially' can be set to t to cause the |
1723 holidays for the current three month period will be displayed on entry to the | |
1724 calendar. The holidays are displayed in another window. | |
628 | 1725 |
1726 The variable `mark-diary-entries-in-calendar' can be set to t to cause any | |
957 | 1727 dates visible with calendar entries to be marked with the symbol specified by |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1728 the variable `diary-entry-marker'. |
957 | 1729 |
1730 The variable `calendar-load-hook', whose default value is nil, is list of | |
1731 functions to be called when the calendar is first loaded. | |
1732 | |
1733 The variable `initial-calendar-window-hook', whose default value is nil, is | |
1734 list of functions to be called when the calendar window is first opened. The | |
1735 functions invoked are called after the calendar window is opened, but once | |
1736 opened is never called again. Leaving the calendar with the `q' command and | |
1737 reentering it will cause these functions to be called again. | |
1738 | |
1739 The variable `today-visible-calendar-hook', whose default value is nil, is the | |
1740 list of functions called after the calendar buffer has been prepared with the | |
1741 calendar when the current date is visible in the window. This can be used, | |
1742 for example, to replace today's date with asterisks; a function | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1743 calendar-star-date is included for this purpose: |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1744 (setq today-visible-calendar-hook 'calendar-star-date) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1745 It could also be used to mark the current date; a function is also provided |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1746 for this: |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
1747 (setq today-visible-calendar-hook 'calendar-mark-today) |
957 | 1748 |
1749 The variable `today-invisible-calendar-hook', whose default value is nil, is | |
1750 the list of functions called after the calendar buffer has been prepared with | |
1751 the calendar when the current date is not visible in the window. | |
1752 | |
1753 The variable `diary-display-hook' is the list of functions called after the | |
1754 diary buffer is prepared. The default value simply displays the diary file | |
1755 using selective-display to conceal irrelevant diary entries. An alternative | |
1756 function `fancy-diary-display' is provided that, when used as the | |
1757 `diary-display-hook', causes a noneditable buffer to be prepared with a neatly | |
1758 organized day-by-day listing of relevant diary entries, together with any | |
1759 known holidays. The inclusion of the holidays slows this fancy display of the | |
1760 diary; to speed it up, set the variable `holidays-in-diary-buffer' to nil. | |
1761 | |
1762 The variable `print-diary-entries-hook' is the list of functions called after | |
1763 a temporary buffer is prepared with the diary entries currently visible in the | |
1764 diary buffer. The default value of this hook adds a heading (composed from | |
1765 the diary buffer's mode line), does the printing with the command lpr-buffer, | |
1766 and kills the temporary buffer. Other uses might include, for example, | |
1767 rearranging the lines into order by day and time. | |
628 | 1768 |
1769 The Gregorian calendar is assumed." | |
1770 | |
1771 (kill-all-local-variables) | |
1772 (setq major-mode 'calendar-mode) | |
1773 (setq mode-name "Calendar") | |
1774 (use-local-map calendar-mode-map) | |
1775 (setq buffer-read-only t) | |
1776 (setq indent-tabs-mode nil) | |
957 | 1777 (update-calendar-mode-line) |
628 | 1778 (make-local-variable 'calendar-window-configuration);; Windows on entry. |
1779 (make-local-variable 'calendar-mark-ring) | |
1780 (make-local-variable 'displayed-month);; Month in middle of window. | |
1781 (make-local-variable 'displayed-year));; Year in middle of window. | |
1782 | |
957 | 1783 (defun calendar-string-spread (strings char length) |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1784 "Concatenate list of STRINGS separated with copies of CHAR to fill LENGTH |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1785 There must be at least 2 strings. The effect is like mapconcat but the |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1786 separating pieces are as balanced as possible. Each item of STRINGS is |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
1787 evaluated before concatenation so it can actually be an expression that |
957 | 1788 evaluates to a string. If LENGTH is too short, the STRINGS are just |
1789 concatenated and the result truncated." | |
1790 ;; The algorithm is based on equation (3.25) on page 85 of Concrete | |
1791 ;; Mathematics by Ronald L. Graham, Donald E. Knuth, and Oren Patashnik, | |
1792 ;; Addison-Wesley, Reading, MA, 1989 | |
1793 (let* ((strings (mapcar 'eval strings)) | |
1794 (n (- length (length (apply 'concat strings)))) | |
1795 (m (1- (length strings))) | |
1796 (s (car strings)) | |
1797 (strings (cdr strings)) | |
1798 (i 0)) | |
1799 (while strings | |
1800 (setq s (concat s | |
1801 (make-string (max 0 (/ (+ n i) m)) char) | |
1802 (car strings))) | |
1803 (setq i (1+ i)) | |
1804 (setq strings (cdr strings))) | |
1805 (substring s 0 length))) | |
1806 | |
628 | 1807 (defun update-calendar-mode-line () |
1808 "Update the calendar mode line with the current date and date style." | |
1809 (if (bufferp (get-buffer calendar-buffer)) | |
1810 (save-excursion | |
1811 (set-buffer calendar-buffer) | |
1812 (setq mode-line-format | |
957 | 1813 (calendar-string-spread |
1814 calendar-mode-line-format ? (frame-width)))))) | |
628 | 1815 |
1816 (defun exit-calendar () | |
957 | 1817 "Get out of the calendar window and bury it and related buffers." |
628 | 1818 (interactive) |
1819 (let ((diary-buffer (get-file-buffer diary-file)) | |
1820 (d-buffer (get-buffer fancy-diary-buffer)) | |
1821 (h-buffer (get-buffer holiday-buffer))) | |
1822 (if (not diary-buffer) | |
1823 (progn | |
1824 (set-window-configuration calendar-window-configuration) | |
957 | 1825 (bury-buffer calendar-buffer) |
1826 (if d-buffer (bury-buffer d-buffer)) | |
1827 (if h-buffer (bury-buffer h-buffer))) | |
628 | 1828 (if (or (not (buffer-modified-p diary-buffer)) |
1829 (yes-or-no-p "Diary modified; do you really want to exit the calendar? ")) | |
1830 (progn | |
1831 (set-window-configuration calendar-window-configuration) | |
957 | 1832 (bury-buffer calendar-buffer) |
1833 (if d-buffer (bury-buffer d-buffer)) | |
1834 (if h-buffer (bury-buffer h-buffer)) | |
628 | 1835 (set-buffer diary-buffer) |
1836 (set-buffer-modified-p nil) | |
957 | 1837 (bury-buffer diary-buffer)))))) |
628 | 1838 |
1839 (defun calendar-current-month () | |
1840 "Reposition the calendar window so the current date is visible." | |
1841 (interactive) | |
1842 (let ((today (calendar-current-date)));; The date might have changed. | |
1843 (if (not (calendar-date-is-visible-p today)) | |
957 | 1844 (generate-calendar-window) |
628 | 1845 (update-calendar-mode-line) |
1846 (calendar-cursor-to-visible-date today)))) | |
1847 | |
1848 (defun calendar-forward-month (arg) | |
1849 "Move the cursor forward ARG months. | |
1850 Movement is backward if ARG is negative." | |
1851 (interactive "p") | |
1852 (calendar-cursor-to-nearest-date) | |
5829
d266967cc1cc
(calendar-mode-line-format): Change "current" to "today".
Richard M. Stallman <rms@gnu.org>
parents:
5771
diff
changeset
|
1853 (let* ((cursor-date (calendar-cursor-to-date t)) |
628 | 1854 (month (extract-calendar-month cursor-date)) |
1855 (day (extract-calendar-day cursor-date)) | |
1856 (year (extract-calendar-year cursor-date))) | |
1857 (increment-calendar-month month year arg) | |
1858 (let ((last (calendar-last-day-of-month month year))) | |
1859 (if (< last day) | |
1860 (setq day last))) | |
1861 ;; Put the new month on the screen, if needed, and go to the new date. | |
1862 (let ((new-cursor-date (list month day year))) | |
1863 (if (not (calendar-date-is-visible-p new-cursor-date)) | |
1864 (calendar-other-month month year)) | |
1865 (calendar-cursor-to-visible-date new-cursor-date)))) | |
1866 | |
1867 (defun calendar-forward-year (arg) | |
1868 "Move the cursor forward by ARG years. | |
1869 Movement is backward if ARG is negative." | |
1870 (interactive "p") | |
1871 (calendar-forward-month (* 12 arg))) | |
1872 | |
1873 (defun calendar-backward-month (arg) | |
1874 "Move the cursor backward by ARG months. | |
1875 Movement is forward if ARG is negative." | |
1876 (interactive "p") | |
1877 (calendar-forward-month (- arg))) | |
1878 | |
1879 (defun calendar-backward-year (arg) | |
1880 "Move the cursor backward ARG years. | |
1881 Movement is forward is ARG is negative." | |
1882 (interactive "p") | |
1883 (calendar-forward-month (* -12 arg))) | |
1884 | |
1885 (defun scroll-calendar-left (arg) | |
1886 "Scroll the displayed calendar left by ARG months. | |
1887 If ARG is negative the calendar is scrolled right. Maintains the relative | |
1888 position of the cursor with respect to the calendar as well as possible." | |
1889 (interactive "p") | |
1890 (calendar-cursor-to-nearest-date) | |
1891 (let ((old-date (calendar-cursor-to-date)) | |
1892 (today (calendar-current-date))) | |
1893 (if (/= arg 0) | |
1894 (progn | |
957 | 1895 (increment-calendar-month displayed-month displayed-year arg) |
1896 (generate-calendar-window displayed-month displayed-year) | |
628 | 1897 (calendar-cursor-to-visible-date |
1898 (cond | |
1899 ((calendar-date-is-visible-p old-date) old-date) | |
1900 ((calendar-date-is-visible-p today) today) | |
1901 (t (list displayed-month 1 displayed-year)))))))) | |
1902 | |
1903 (defun scroll-calendar-right (arg) | |
1904 "Scroll the displayed calendar window right by ARG months. | |
1905 If ARG is negative the calendar is scrolled left. Maintains the relative | |
1906 position of the cursor with respect to the calendar as well as possible." | |
1907 (interactive "p") | |
1908 (scroll-calendar-left (- arg))) | |
1909 | |
1910 (defun scroll-calendar-left-three-months (arg) | |
1911 "Scroll the displayed calendar window left by 3*ARG months. | |
1912 If ARG is negative the calendar is scrolled right. Maintains the relative | |
1913 position of the cursor with respect to the calendar as well as possible." | |
1914 (interactive "p") | |
1915 (scroll-calendar-left (* 3 arg))) | |
1916 | |
1917 (defun scroll-calendar-right-three-months (arg) | |
1918 "Scroll the displayed calendar window right by 3*ARG months. | |
1919 If ARG is negative the calendar is scrolled left. Maintains the relative | |
1920 position of the cursor with respect to the calendar as well as possible." | |
1921 (interactive "p") | |
1922 (scroll-calendar-left (* -3 arg))) | |
1923 | |
1924 (defun calendar-current-date () | |
1925 "Returns the current date in a list (month day year). | |
1926 If in the calendar buffer, also sets the current date local variables." | |
1927 (let* ((date (current-time-string)) | |
1928 (garbage | |
1929 (string-match | |
1930 "^\\([A-Z][a-z]*\\) *\\([A-Z][a-z]*\\) *\\([0-9]*\\) .* \\([0-9]*\\)$" | |
1931 date)) | |
1932 (month | |
1933 (cdr (assoc | |
1934 (substring date (match-beginning 2) (match-end 2)) | |
6124
56546a41a683
* calendar.el (calendar-current-date): Use fixed assoc list for
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6037
diff
changeset
|
1935 '(("Jan" . 1) ("Feb" . 2) ("Mar" . 3) ("Apr" . 4) |
56546a41a683
* calendar.el (calendar-current-date): Use fixed assoc list for
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6037
diff
changeset
|
1936 ("May" . 5) ("Jun" . 6) ("Jul" . 7) ("Aug" . 8) |
56546a41a683
* calendar.el (calendar-current-date): Use fixed assoc list for
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6037
diff
changeset
|
1937 ("Sep" . 9) ("Oct" . 10) ("Nov" . 11) ("Dec" . 12))))) |
628 | 1938 (day |
1939 (string-to-int (substring date (match-beginning 3) (match-end 3)))) | |
1940 (year | |
1941 (string-to-int (substring date (match-beginning 4) (match-end 4))))) | |
1942 (list month day year))) | |
1943 | |
5829
d266967cc1cc
(calendar-mode-line-format): Change "current" to "today".
Richard M. Stallman <rms@gnu.org>
parents:
5771
diff
changeset
|
1944 (defun calendar-cursor-to-date (&optional error) |
628 | 1945 "Returns a list of the month, day, and year of current cursor position. |
5829
d266967cc1cc
(calendar-mode-line-format): Change "current" to "today".
Richard M. Stallman <rms@gnu.org>
parents:
5771
diff
changeset
|
1946 If cursor is not on a specific date, signals an error if optional parameter |
d266967cc1cc
(calendar-mode-line-format): Change "current" to "today".
Richard M. Stallman <rms@gnu.org>
parents:
5771
diff
changeset
|
1947 ERROR is t, otherwise just returns nil." |
6037
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1948 (let* ((segment (/ (current-column) 25)) |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1949 (month (% (+ displayed-month segment -1) 12)) |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1950 (month (if (= 0 month) 12 month)) |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1951 (year |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1952 (cond |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1953 ((and (= 12 month) (= segment 0)) (1- displayed-year)) |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1954 ((and (= 1 month) (= segment 2)) (1+ displayed-year)) |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1955 (t displayed-year)))) |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1956 (if (and (looking-at "[0-9]") |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1957 (< 2 (count-lines (point-min) (point)))) |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1958 (save-excursion |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1959 (re-search-backward "[^0-9]") |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1960 (list month |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1961 (string-to-int (buffer-substring (1+ (point)) (+ 4 (point)))) |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1962 year)) |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1963 (if (looking-at "\\*") |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1964 (save-excursion |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1965 (re-search-backward "[^*]") |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1966 (if (looking-at ".\\*\\*") |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1967 (list month starred-day year) |
324bb3410cfb
Fix calendar-cursor-to-date to handle starred days correctly.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6025
diff
changeset
|
1968 (if error (error "Cursor is not on a date!")))))))) |
628 | 1969 |
1970 (defun calendar-cursor-to-nearest-date () | |
1971 "Move the cursor to the closest date. | |
1972 The position of the cursor is unchanged if it is already on a date. | |
1973 Returns the list (month day year) giving the cursor position." | |
1974 (let ((date (calendar-cursor-to-date)) | |
1975 (column (current-column))) | |
1976 (if date | |
1977 date | |
1978 (if (> 3 (count-lines (point-min) (point))) | |
1979 (progn | |
1980 (goto-line 3) | |
1981 (move-to-column column))) | |
1982 (if (not (looking-at "[0-9]")) | |
1983 (if (and (not (looking-at " *$")) | |
1984 (or (< column 25) | |
1985 (and (> column 27) | |
1986 (< column 50)) | |
1987 (and (> column 52) | |
1988 (< column 75)))) | |
1989 (progn | |
1990 (re-search-forward "[0-9]" nil t) | |
1991 (backward-char 1)) | |
1992 (re-search-backward "[0-9]" nil t))) | |
1993 (calendar-cursor-to-date)))) | |
1994 | |
1995 (defun calendar-forward-day (arg) | |
1996 "Move the cursor forward ARG days. | |
1997 Moves backward if ARG is negative." | |
1998 (interactive "p") | |
1999 (if (/= 0 arg) | |
2000 (let* | |
2001 ((cursor-date (calendar-cursor-to-date)) | |
2002 (cursor-date (if cursor-date | |
2003 cursor-date | |
2004 (if (> arg 0) (setq arg (1- arg))) | |
2005 (calendar-cursor-to-nearest-date))) | |
2006 (new-cursor-date | |
2007 (calendar-gregorian-from-absolute | |
2008 (+ (calendar-absolute-from-gregorian cursor-date) arg))) | |
2009 (new-display-month (extract-calendar-month new-cursor-date)) | |
2010 (new-display-year (extract-calendar-year new-cursor-date))) | |
2011 ;; Put the new month on the screen, if needed, and go to the new date. | |
2012 (if (not (calendar-date-is-visible-p new-cursor-date)) | |
2013 (calendar-other-month new-display-month new-display-year)) | |
2014 (calendar-cursor-to-visible-date new-cursor-date)))) | |
2015 | |
2016 (defun calendar-backward-day (arg) | |
2017 "Move the cursor back ARG days. | |
2018 Moves forward if ARG is negative." | |
2019 (interactive "p") | |
2020 (calendar-forward-day (- arg))) | |
2021 | |
2022 (defun calendar-forward-week (arg) | |
2023 "Move the cursor forward ARG weeks. | |
2024 Moves backward if ARG is negative." | |
2025 (interactive "p") | |
2026 (calendar-forward-day (* arg 7))) | |
2027 | |
2028 (defun calendar-backward-week (arg) | |
2029 "Move the cursor back ARG weeks. | |
2030 Moves forward if ARG is negative." | |
2031 (interactive "p") | |
2032 (calendar-forward-day (* arg -7))) | |
2033 | |
2034 (defun calendar-beginning-of-week (arg) | |
4861
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2035 "Move the cursor back ARG calendar-week-start-day's." |
628 | 2036 (interactive "p") |
2037 (calendar-cursor-to-nearest-date) | |
2038 (let ((day (calendar-day-of-week (calendar-cursor-to-date)))) | |
2039 (calendar-backward-day | |
4861
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2040 (if (= day calendar-week-start-day) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2041 (* 7 arg) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2042 (+ (calendar-mod (- day calendar-week-start-day) 7) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2043 (* 7 (1- arg))))))) |
628 | 2044 |
2045 (defun calendar-end-of-week (arg) | |
4861
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2046 "Move the cursor forward ARG calendar-week-start-day+6's." |
628 | 2047 (interactive "p") |
2048 (calendar-cursor-to-nearest-date) | |
2049 (let ((day (calendar-day-of-week (calendar-cursor-to-date)))) | |
2050 (calendar-forward-day | |
4861
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2051 (if (= day (calendar-mod (1- calendar-week-start-day) 7)) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2052 (* 7 arg) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2053 (+ (- 6 (calendar-mod (- day calendar-week-start-day) 7)) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2054 (* 7 (1- arg))))))) |
628 | 2055 |
2056 (defun calendar-beginning-of-month (arg) | |
2057 "Move the cursor backward ARG month beginnings." | |
2058 (interactive "p") | |
2059 (calendar-cursor-to-nearest-date) | |
2060 (let* ((date (calendar-cursor-to-date)) | |
2061 (month (extract-calendar-month date)) | |
2062 (day (extract-calendar-day date)) | |
2063 (year (extract-calendar-year date))) | |
2064 (if (= day 1) | |
2065 (calendar-backward-month arg) | |
2066 (calendar-cursor-to-visible-date (list month 1 year)) | |
2067 (calendar-backward-month (1- arg))))) | |
2068 | |
2069 (defun calendar-end-of-month (arg) | |
2070 "Move the cursor forward ARG month ends." | |
2071 (interactive "p") | |
2072 (calendar-cursor-to-nearest-date) | |
2073 (let* ((date (calendar-cursor-to-date)) | |
2074 (month (extract-calendar-month date)) | |
2075 (day (extract-calendar-day date)) | |
2076 (year (extract-calendar-year date)) | |
2077 (last-day (calendar-last-day-of-month month year))) | |
2078 (if (/= day last-day) | |
2079 (progn | |
2080 (calendar-cursor-to-visible-date (list month last-day year)) | |
2081 (setq arg (1- arg)))) | |
2082 (increment-calendar-month month year arg) | |
2083 (let ((last-day (list | |
2084 month | |
2085 (calendar-last-day-of-month month year) | |
2086 year))) | |
2087 (if (not (calendar-date-is-visible-p last-day)) | |
2088 (calendar-other-month month year) | |
2089 (calendar-cursor-to-visible-date last-day))))) | |
2090 | |
2091 (defun calendar-beginning-of-year (arg) | |
2092 "Move the cursor backward ARG year beginnings." | |
2093 (interactive "p") | |
2094 (calendar-cursor-to-nearest-date) | |
2095 (let* ((date (calendar-cursor-to-date)) | |
2096 (month (extract-calendar-month date)) | |
2097 (day (extract-calendar-day date)) | |
2098 (year (extract-calendar-year date)) | |
2099 (jan-first (list 1 1 year))) | |
2100 (if (and (= day 1) (= 1 month)) | |
2101 (calendar-backward-month (* 12 arg)) | |
2102 (if (and (= arg 1) | |
2103 (calendar-date-is-visible-p jan-first)) | |
2104 (calendar-cursor-to-visible-date jan-first) | |
2105 (calendar-other-month 1 (- year (1- arg))))))) | |
2106 | |
2107 (defun calendar-end-of-year (arg) | |
2108 "Move the cursor forward ARG year beginnings." | |
2109 (interactive "p") | |
2110 (calendar-cursor-to-nearest-date) | |
2111 (let* ((date (calendar-cursor-to-date)) | |
2112 (month (extract-calendar-month date)) | |
2113 (day (extract-calendar-day date)) | |
2114 (year (extract-calendar-year date)) | |
2115 (dec-31 (list 12 31 year))) | |
2116 (if (and (= day 31) (= 12 month)) | |
2117 (calendar-forward-month (* 12 arg)) | |
2118 (if (and (= arg 1) | |
2119 (calendar-date-is-visible-p dec-31)) | |
2120 (calendar-cursor-to-visible-date dec-31) | |
2121 (calendar-other-month 12 (- year (1- arg))) | |
2122 (calendar-cursor-to-visible-date (list 12 31 displayed-year)))))) | |
2123 | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2124 ;; The following version of calendar-gregorian-from-absolute is preferred for |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2125 ;; reasons of clarity, BUT it's much slower than the version that follows it. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2126 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2127 ;;(defun calendar-gregorian-from-absolute (date) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2128 ;; "Compute the list (month day year) corresponding to the absolute DATE. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2129 ;;The absolute date is the number of days elapsed since the (imaginary) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2130 ;;Gregorian date Sunday, December 31, 1 BC." |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2131 ;; (let* ((approx (/ date 366));; Approximation from below. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2132 ;; (year ;; Search forward from the approximation. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2133 ;; (+ approx |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2134 ;; (calendar-sum y approx |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2135 ;; (>= date (calendar-absolute-from-gregorian (list 1 1 (1+ y)))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2136 ;; 1))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2137 ;; (month ;; Search forward from January. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2138 ;; (1+ (calendar-sum m 1 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2139 ;; (> date |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2140 ;; (calendar-absolute-from-gregorian |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2141 ;; (list m (calendar-last-day-of-month m year) year))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2142 ;; 1))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2143 ;; (day ;; Calculate the day by subtraction. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2144 ;; (- date |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2145 ;; (1- (calendar-absolute-from-gregorian (list month 1 year)))))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2146 ;; (list month day year))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2147 |
628 | 2148 (defun calendar-gregorian-from-absolute (date) |
2149 "Compute the list (month day year) corresponding to the absolute DATE. | |
2150 The absolute date is the number of days elapsed since the (imaginary) | |
2151 Gregorian date Sunday, December 31, 1 BC." | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2152 ;; See the footnote on page 384 of ``Calendrical Calculations, Part II: |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2153 ;; Three Historical Calendars'' by E. M. Reingold, N. Dershowitz, and S. M. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2154 ;; Clamen, Software--Practice and Experience, Volume 23, Number 4 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2155 ;; (April, 1993), pages 383-404 for an explanation. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2156 (let* ((d0 (1- date)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2157 (n400 (/ d0 146097)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2158 (d1 (% d0 146097)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2159 (n100 (/ d1 36524)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2160 (d2 (% d1 36524)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2161 (n4 (/ d2 1461)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2162 (d3 (% d2 1461)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2163 (n1 (/ d3 365)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2164 (day (1+ (% d3 365))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2165 (year (+ (* 400 n400) (* 100 n100) (* n4 4) n1))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2166 (if (or (= n100 4) (= n1 4)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2167 (list 12 31 year) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2168 (let ((year (1+ year)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2169 (month 1)) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2170 (while (let ((mdays (calendar-last-day-of-month month year))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2171 (and (< mdays day) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2172 (setq day (- day mdays)))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2173 (setq month (1+ month))) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2174 (list month day year))))) |
628 | 2175 |
4861
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2176 (defun calendar-mod (x y) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2177 "Returns X % Y; value is *always* non-negative." |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2178 (let ((v (mod x y))) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2179 (if (> 0 v) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2180 (+ v y) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2181 v))) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2182 |
628 | 2183 (defun calendar-cursor-to-visible-date (date) |
2184 "Move the cursor to DATE that is on the screen." | |
4861
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2185 (let* ((month (extract-calendar-month date)) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2186 (day (extract-calendar-day date)) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2187 (year (extract-calendar-year date)) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2188 (first-of-month-weekday (calendar-day-of-week (list month 1 year)))) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2189 (goto-line (+ 3 |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2190 (/ (+ day -1 |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2191 (calendar-mod |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2192 (- (calendar-day-of-week (list month 1 year)) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2193 calendar-week-start-day) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2194 7)) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2195 7))) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2196 (move-to-column (+ 6 |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2197 (* 25 |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2198 (1+ (calendar-interval |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2199 displayed-month displayed-year month year))) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2200 (* 3 (calendar-mod |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2201 (- (calendar-day-of-week date) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2202 calendar-week-start-day) |
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2203 7)))))) |
628 | 2204 |
2205 (defun calendar-other-month (month year) | |
2206 "Display a three-month calendar centered around MONTH and YEAR." | |
2207 (interactive | |
2208 (let* ((completion-ignore-case t) | |
2209 (month (cdr (assoc | |
2210 (capitalize | |
2211 (completing-read | |
2212 "Month name: " | |
2213 (mapcar 'list (append calendar-month-name-array nil)) | |
2214 nil t)) | |
2215 (calendar-make-alist calendar-month-name-array)))) | |
2216 (year (calendar-read | |
2217 "Year (>0): " | |
2218 '(lambda (x) (> x 0)) | |
957 | 2219 (int-to-string |
2220 (extract-calendar-year (calendar-current-date)))))) | |
628 | 2221 (list month year))) |
2222 (if (and (= month displayed-month) | |
2223 (= year displayed-year)) | |
2224 nil | |
2225 (let ((old-date (calendar-cursor-to-date)) | |
2226 (today (calendar-current-date))) | |
957 | 2227 (generate-calendar-window month year) |
628 | 2228 (calendar-cursor-to-visible-date |
2229 (cond | |
2230 ((calendar-date-is-visible-p old-date) old-date) | |
2231 ((calendar-date-is-visible-p today) today) | |
2232 (t (list month 1 year))))))) | |
2233 | |
2234 (defun calendar-set-mark (arg) | |
2235 "Mark the date under the cursor, or jump to marked date. | |
2236 With no prefix argument, push current date onto marked date ring. | |
2237 With argument, jump to mark, pop it, and put point at end of ring." | |
2238 (interactive "P") | |
5829
d266967cc1cc
(calendar-mode-line-format): Change "current" to "today".
Richard M. Stallman <rms@gnu.org>
parents:
5771
diff
changeset
|
2239 (let ((date (calendar-cursor-to-date t))) |
628 | 2240 (if (null arg) |
2241 (progn | |
2242 (setq calendar-mark-ring (cons date calendar-mark-ring)) | |
2243 ;; Since the top of the mark ring is the marked date in the | |
2244 ;; calendar, the mark ring in the calendar is one longer than | |
2245 ;; in other buffers to get the same effect. | |
2246 (if (> (length calendar-mark-ring) (1+ mark-ring-max)) | |
2247 (setcdr (nthcdr mark-ring-max calendar-mark-ring) nil)) | |
2248 (message "Mark set")) | |
2249 (if (null calendar-mark-ring) | |
2250 (error "No mark set in this buffer") | |
2251 (calendar-goto-date (car calendar-mark-ring)) | |
2252 (setq calendar-mark-ring | |
2253 (cdr (nconc calendar-mark-ring (list date)))))))) | |
2254 | |
2255 (defun calendar-exchange-point-and-mark () | |
2256 "Exchange the current cursor position with the marked date." | |
2257 (interactive) | |
2258 (let ((mark (car calendar-mark-ring)) | |
5829
d266967cc1cc
(calendar-mode-line-format): Change "current" to "today".
Richard M. Stallman <rms@gnu.org>
parents:
5771
diff
changeset
|
2259 (date (calendar-cursor-to-date t))) |
628 | 2260 (if (null mark) |
2261 (error "No mark set in this buffer") | |
2262 (setq calendar-mark-ring (cons date (cdr calendar-mark-ring))) | |
2263 (calendar-goto-date mark)))) | |
2264 | |
2265 (defun calendar-count-days-region () | |
2266 "Count the number of days (inclusive) between point and the mark." | |
2267 (interactive) | |
2268 (let* ((days (- (calendar-absolute-from-gregorian | |
5829
d266967cc1cc
(calendar-mode-line-format): Change "current" to "today".
Richard M. Stallman <rms@gnu.org>
parents:
5771
diff
changeset
|
2269 (calendar-cursor-to-date t)) |
628 | 2270 (calendar-absolute-from-gregorian |
2271 (or (car calendar-mark-ring) | |
2272 (error "No mark set in this buffer"))))) | |
2273 (days (1+ (if (> days 0) days (- days))))) | |
2274 (message "Region has %d day%s (inclusive)" | |
2275 days (if (> days 1) "s" "")))) | |
2276 | |
2277 (defun calendar-not-implemented () | |
2278 "Not implemented." | |
2279 (interactive) | |
2280 (error "%s not available in the calendar" | |
2281 (global-key-binding (this-command-keys)))) | |
2282 | |
2283 (defun calendar-read (prompt acceptable &optional initial-contents) | |
2284 "Return an object read from the minibuffer. | |
2285 Prompt with the string PROMPT and use the function ACCEPTABLE to decide if | |
2286 entered item is acceptable. If non-nil, optional third arg INITIAL-CONTENTS | |
2287 is a string to insert in the minibuffer before reading." | |
2288 (let ((value (read-minibuffer prompt initial-contents))) | |
2289 (while (not (funcall acceptable value)) | |
2290 (setq value (read-minibuffer prompt initial-contents))) | |
2291 value)) | |
2292 | |
957 | 2293 (defun calendar-read-date () |
2294 "Prompt for Gregorian date. Returns a list (month day year)." | |
2295 (let* ((year (calendar-read | |
2296 "Year (>0): " | |
2297 '(lambda (x) (> x 0)) | |
2298 (int-to-string (extract-calendar-year | |
2299 (calendar-current-date))))) | |
2300 (month-array calendar-month-name-array) | |
2301 (completion-ignore-case t) | |
2302 (month (cdr (assoc | |
2303 (capitalize | |
2304 (completing-read | |
2305 "Month name: " | |
2306 (mapcar 'list (append month-array nil)) | |
2307 nil t)) | |
2308 (calendar-make-alist month-array 1 'capitalize)))) | |
2309 (last (calendar-last-day-of-month month year)) | |
2310 (day (calendar-read | |
2311 (format "Day (1-%d): " last) | |
2312 '(lambda (x) (and (< 0 x) (<= x last)))))) | |
2313 (list month day year))) | |
2314 | |
628 | 2315 (defun calendar-goto-date (date) |
2316 "Move cursor to DATE." | |
957 | 2317 (interactive (list (calendar-read-date))) |
628 | 2318 (let ((month (extract-calendar-month date)) |
2319 (year (extract-calendar-year date))) | |
2320 (if (not (calendar-date-is-visible-p date)) | |
2321 (calendar-other-month | |
2322 (if (and (= month 1) (= year 1)) | |
2323 2 | |
2324 month) | |
2325 year))) | |
2326 (calendar-cursor-to-visible-date date)) | |
2327 | |
2328 (defun calendar-goto-julian-date (date &optional noecho) | |
2329 "Move cursor to Julian DATE; echo Julian date unless NOECHO is t." | |
2330 (interactive | |
957 | 2331 (let* ((today (calendar-current-date)) |
2332 (year (calendar-read | |
628 | 2333 "Julian calendar year (>0): " |
2334 '(lambda (x) (> x 0)) | |
2335 (int-to-string | |
2336 (extract-calendar-year | |
2337 (calendar-julian-from-absolute | |
2338 (calendar-absolute-from-gregorian | |
957 | 2339 today)))))) |
628 | 2340 (month-array calendar-month-name-array) |
2341 (completion-ignore-case t) | |
2342 (month (cdr (assoc | |
2343 (capitalize | |
2344 (completing-read | |
2345 "Julian calendar month name: " | |
2346 (mapcar 'list (append month-array nil)) | |
2347 nil t)) | |
2348 (calendar-make-alist month-array 1 'capitalize)))) | |
2349 (last | |
2350 (if (and (zerop (% year 4)) (= month 2)) | |
2351 29 | |
2352 (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- month)))) | |
2353 (day (calendar-read | |
2354 (format "Julian calendar day (%d-%d): " | |
2355 (if (and (= year 1) (= month 1)) 3 1) last) | |
2356 '(lambda (x) | |
2357 (and (< (if (and (= year 1) (= month 1)) 2 0) x) | |
2358 (<= x last)))))) | |
2359 (list (list month day year)))) | |
2360 (calendar-goto-date (calendar-gregorian-from-absolute | |
2361 (calendar-absolute-from-julian date))) | |
957 | 2362 (or noecho (calendar-print-julian-date))) |
628 | 2363 |
2364 (defun calendar-goto-hebrew-date (date &optional noecho) | |
2365 "Move cursor to Hebrew DATE; echo Hebrew date unless NOECHO is t." | |
2366 (interactive | |
957 | 2367 (let* ((today (calendar-current-date)) |
2368 (year (calendar-read | |
628 | 2369 "Hebrew calendar year (>3760): " |
2370 '(lambda (x) (> x 3760)) | |
2371 (int-to-string | |
2372 (extract-calendar-year | |
2373 (calendar-hebrew-from-absolute | |
957 | 2374 (calendar-absolute-from-gregorian today)))))) |
628 | 2375 (month-array (if (hebrew-calendar-leap-year-p year) |
2376 calendar-hebrew-month-name-array-leap-year | |
2377 calendar-hebrew-month-name-array-common-year)) | |
2378 (completion-ignore-case t) | |
2379 (month (cdr (assoc | |
2380 (capitalize | |
2381 (completing-read | |
2382 "Hebrew calendar month name: " | |
2383 (mapcar 'list (append month-array nil)) | |
2384 (if (= year 3761) | |
2385 '(lambda (x) | |
2386 (let ((m (cdr | |
2387 (assoc | |
2388 (car x) | |
2389 (calendar-make-alist | |
2390 month-array))))) | |
2391 (< 0 | |
2392 (calendar-absolute-from-hebrew | |
2393 (list m | |
2394 (hebrew-calendar-last-day-of-month | |
2395 m year) | |
2396 year)))))) | |
2397 | |
2398 t)) | |
2399 (calendar-make-alist month-array 1 'capitalize)))) | |
2400 (last (hebrew-calendar-last-day-of-month month year)) | |
2401 (first (if (and (= year 3761) (= month 10)) | |
2402 18 1)) | |
2403 (day (calendar-read | |
2404 (format "Hebrew calendar day (%d-%d): " | |
2405 first last) | |
2406 '(lambda (x) (and (<= first x) (<= x last)))))) | |
2407 (list (list month day year)))) | |
2408 (calendar-goto-date (calendar-gregorian-from-absolute | |
2409 (calendar-absolute-from-hebrew date))) | |
957 | 2410 (or noecho (calendar-print-hebrew-date))) |
628 | 2411 |
2412 (defun calendar-goto-islamic-date (date &optional noecho) | |
2413 "Move cursor to Islamic DATE; echo Islamic date unless NOECHO is t." | |
2414 (interactive | |
957 | 2415 (let* ((today (calendar-current-date)) |
2416 (year (calendar-read | |
628 | 2417 "Islamic calendar year (>0): " |
2418 '(lambda (x) (> x 0)) | |
2419 (int-to-string | |
2420 (extract-calendar-year | |
2421 (calendar-islamic-from-absolute | |
957 | 2422 (calendar-absolute-from-gregorian today)))))) |
628 | 2423 (month-array calendar-islamic-month-name-array) |
2424 (completion-ignore-case t) | |
2425 (month (cdr (assoc | |
2426 (capitalize | |
2427 (completing-read | |
2428 "Islamic calendar month name: " | |
2429 (mapcar 'list (append month-array nil)) | |
2430 nil t)) | |
2431 (calendar-make-alist month-array 1 'capitalize)))) | |
2432 (last (islamic-calendar-last-day-of-month month year)) | |
2433 (day (calendar-read | |
2434 (format "Islamic calendar day (1-%d): " last) | |
2435 '(lambda (x) (and (< 0 x) (<= x last)))))) | |
2436 (list (list month day year)))) | |
2437 (calendar-goto-date (calendar-gregorian-from-absolute | |
2438 (calendar-absolute-from-islamic date))) | |
957 | 2439 (or noecho (calendar-print-islamic-date))) |
628 | 2440 |
2441 (defun calendar-goto-iso-date (date &optional noecho) | |
2442 "Move cursor to ISO DATE; echo ISO date unless NOECHO is t." | |
2443 (interactive | |
957 | 2444 (let* ((today (calendar-current-date)) |
2445 (year (calendar-read | |
628 | 2446 "ISO calendar year (>0): " |
2447 '(lambda (x) (> x 0)) | |
957 | 2448 (int-to-string (extract-calendar-year today)))) |
628 | 2449 (no-weeks (extract-calendar-month |
2450 (calendar-iso-from-absolute | |
2451 (1- | |
2452 (calendar-dayname-on-or-before | |
2453 1 (calendar-absolute-from-gregorian | |
2454 (list 1 4 (1+ year)))))))) | |
2455 (week (calendar-read | |
2456 (format "ISO calendar week (1-%d): " no-weeks) | |
2457 '(lambda (x) (and (> x 0) (<= x no-weeks))))) | |
2458 (day (calendar-read | |
2459 "ISO day (1-7): " | |
2460 '(lambda (x) (and (<= 1 x) (<= x 7)))))) | |
2461 (list (list week day year)))) | |
2462 (calendar-goto-date (calendar-gregorian-from-absolute | |
2463 (calendar-absolute-from-iso date))) | |
957 | 2464 (or noecho (calendar-print-iso-date))) |
628 | 2465 |
2466 (defun calendar-interval (mon1 yr1 mon2 yr2) | |
957 | 2467 "The number of months difference between MON1, YR1 and MON2, YR2." |
628 | 2468 (+ (* 12 (- yr2 yr1)) |
2469 (- mon2 mon1))) | |
2470 | |
2471 (defun calendar-day-name (date) | |
2472 "Returns a string with the name of the day of the week of DATE." | |
2473 (aref calendar-day-name-array (calendar-day-of-week date))) | |
2474 | |
4861
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2475 (defvar calendar-day-name-array |
628 | 2476 ["Sunday" "Monday" "Tuesday" "Wednesday" "Thursday" "Friday" "Saturday"]) |
2477 | |
4861
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2478 (defvar calendar-month-name-array |
628 | 2479 ["January" "February" "March" "April" "May" "June" |
2480 "July" "August" "September" "October" "November" "December"]) | |
2481 | |
2482 (defun calendar-make-alist (sequence &optional start-index filter) | |
2483 "Make an assoc list corresponding to SEQUENCE. | |
2484 Start at index 1, unless optional START-INDEX is provided. | |
2485 If FILTER is provided, apply it to each item in the list." | |
2486 (let ((index (if start-index (1- start-index) 0))) | |
2487 (mapcar | |
2488 '(lambda (x) | |
2489 (setq index (1+ index)) | |
2490 (cons (if filter (funcall filter x) x) | |
2491 index)) | |
2492 (append sequence nil)))) | |
2493 | |
2494 (defun calendar-month-name (month) | |
2495 "The name of MONTH." | |
2496 (aref calendar-month-name-array (1- month))) | |
2497 | |
2498 (defun calendar-day-of-week (date) | |
2499 "Returns the day-of-the-week index of DATE, 0 for Sunday, 1 for Monday, etc." | |
2500 (% (calendar-absolute-from-gregorian date) 7)) | |
2501 | |
2502 (defun calendar-unmark () | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2503 "Delete all diary/holiday marks/highlighting from the calendar." |
628 | 2504 (interactive) |
2505 (setq mark-holidays-in-calendar nil) | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2506 (setq mark-diary-entries-in-calendar nil) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2507 (redraw-calendar)) |
628 | 2508 |
2509 (defun calendar-date-is-visible-p (date) | |
2510 "Returns t if DATE is legal and is visible in the calendar window." | |
2511 (let ((gap (calendar-interval | |
2512 displayed-month displayed-year | |
2513 (extract-calendar-month date) (extract-calendar-year date)))) | |
2514 (and (calendar-date-is-legal-p date) (> 2 gap) (< -2 gap)))) | |
2515 | |
2516 (defun calendar-date-is-legal-p (date) | |
2517 "Returns t if DATE is a legal date." | |
2518 (let ((month (extract-calendar-month date)) | |
2519 (day (extract-calendar-day date)) | |
2520 (year (extract-calendar-year date))) | |
2521 (and (<= 1 month) (<= month 12) | |
2522 (<= 1 day) (<= day (calendar-last-day-of-month month year)) | |
2523 (<= 1 year)))) | |
2524 | |
2525 (defun calendar-date-equal (date1 date2) | |
2526 "Returns t if the DATE1 and DATE2 are the same." | |
2527 (and | |
2528 (= (extract-calendar-month date1) (extract-calendar-month date2)) | |
2529 (= (extract-calendar-day date1) (extract-calendar-day date2)) | |
2530 (= (extract-calendar-year date1) (extract-calendar-year date2)))) | |
2531 | |
2532 (defun mark-visible-calendar-date (date &optional mark) | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2533 "Mark DATE in the calendar window with MARK. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2534 MARK is either a single-character string or a face. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2535 MARK defaults to diary-entry-marker." |
628 | 2536 (if (calendar-date-is-legal-p date) |
2537 (save-excursion | |
2538 (set-buffer calendar-buffer) | |
2539 (calendar-cursor-to-visible-date date) | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2540 (let ((mark (or mark diary-entry-marker))) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2541 (if (stringp mark) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2542 (let ((buffer-read-only nil)) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2543 (forward-char 1) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2544 (delete-char 1) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2545 (insert mark) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2546 (forward-char -2)) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2547 (overlay-put |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2548 (make-overlay (1-(point)) (1+ (point))) 'face mark)))))) |
628 | 2549 |
2550 (defun calendar-star-date () | |
2551 "Replace the date under the cursor in the calendar window with asterisks. | |
2552 This function can be used with the today-visible-calendar-hook run after the | |
2553 calendar window has been prepared." | |
2554 (let ((buffer-read-only nil)) | |
957 | 2555 (make-variable-buffer-local 'starred-day) |
628 | 2556 (forward-char 1) |
957 | 2557 (setq starred-day |
2558 (string-to-int | |
2559 (buffer-substring (point) (- (point) 2)))) | |
628 | 2560 (delete-char -2) |
2561 (insert "**") | |
2562 (backward-char 1) | |
2563 (set-buffer-modified-p nil))) | |
2564 | |
2565 (defun calendar-mark-today () | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2566 "Mark the date under the cursor in the calendar window. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2567 The date is marked with calendar-today-marker. This function can be used with |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2568 the today-visible-calendar-hook run after the calendar window has been |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2569 prepared." |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2570 (mark-visible-calendar-date |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2571 (calendar-cursor-to-date) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2572 calendar-today-marker)) |
628 | 2573 |
2574 (defun calendar-date-compare (date1 date2) | |
2575 "Returns t if DATE1 is before DATE2, nil otherwise. | |
2576 The actual dates are in the car of DATE1 and DATE2." | |
2577 (< (calendar-absolute-from-gregorian (car date1)) | |
2578 (calendar-absolute-from-gregorian (car date2)))) | |
2579 | |
2580 (defun calendar-date-string (date &optional abbreviate nodayname) | |
2581 "A string form of DATE, driven by the variable `calendar-date-display-form'. | |
2582 An optional parameter ABBREVIATE, when t, causes the month and day names to be | |
2583 abbreviated to three characters. An optional parameter NODAYNAME, when t, | |
2584 omits the name of the day of the week." | |
2585 (let* ((dayname | |
2586 (if nodayname | |
957 | 2587 nil |
628 | 2588 (if abbreviate |
2589 (substring (calendar-day-name date) 0 3) | |
2590 (calendar-day-name date)))) | |
2591 (month (extract-calendar-month date)) | |
2592 (monthname | |
2593 (if abbreviate | |
2594 (substring | |
2595 (calendar-month-name month) 0 3) | |
2596 (calendar-month-name month))) | |
2597 (day (int-to-string (extract-calendar-day date))) | |
2598 (month (int-to-string month)) | |
2599 (year (int-to-string (extract-calendar-year date)))) | |
2600 (mapconcat 'eval calendar-date-display-form ""))) | |
2601 | |
2602 (defun calendar-dayname-on-or-before (dayname date) | |
2603 "Returns the absolute date of the DAYNAME on or before absolute DATE. | |
2604 DAYNAME=0 means Sunday, DAYNAME=1 means Monday, and so on. | |
2605 | |
2606 Note: Applying this function to d+6 gives us the DAYNAME on or after an | |
2607 absolute day d. Similarly, applying it to d+3 gives the DAYNAME nearest to | |
2608 absolute date d, applying it to d-1 gives the DAYNAME previous to absolute | |
2609 date d, and applying it to d+7 gives the DAYNAME following absolute date d." | |
2610 (- date (% (- date dayname) 7))) | |
2611 | |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2612 (defun calendar-nth-named-absday (n dayname month year &optional day) |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2613 "The absolute date of Nth DAYNAME in MONTH, YEAR before/after optional DAY. |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2614 A DAYNAME of 0 means Sunday, 1 means Monday, and so on. If N<0, |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2615 return the Nth DAYNAME before MONTH DAY, YEAR (inclusive). |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2616 If N>0, return the Nth DAYNAME after MONTH DAY, YEAR (inclusive). |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2617 |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2618 If DAY is omitted, it defaults to 1 if N>0, and MONTH's last day otherwise." |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2619 (if (> n 0) |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2620 (+ (* 7 (1- n)) |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2621 (calendar-dayname-on-or-before |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2622 dayname |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2623 (+ 6 (calendar-absolute-from-gregorian |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2624 (list month (or day 1) year))))) |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2625 (+ (* 7 (1+ n)) |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2626 (calendar-dayname-on-or-before |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2627 dayname |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2628 (calendar-absolute-from-gregorian |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2629 (list month |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2630 (or day (calendar-last-day-of-month month year)) |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2631 year)))))) |
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2632 |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2633 (defun calendar-nth-named-day (n dayname month year &optional day) |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2634 "The date of Nth DAYNAME in MONTH, YEAR before/after optional DAY. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2635 A DAYNAME of 0 means Sunday, 1 means Monday, and so on. If N<0, |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2636 return the Nth DAYNAME before MONTH DAY, YEAR (inclusive). |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2637 If N>0, return the Nth DAYNAME after MONTH DAY, YEAR (inclusive). |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2638 |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2639 If DAY is omitted, it defaults to 1 if N>0, and MONTH's last day otherwise." |
628 | 2640 (calendar-gregorian-from-absolute |
4658
a34bd3ee36ef
(solar-holidays): Use new
Paul Eggert <eggert@twinsun.com>
parents:
4652
diff
changeset
|
2641 (calendar-nth-named-absday n dayname month year day))) |
628 | 2642 |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2643 (defun calendar-day-of-year-string (&optional date) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2644 "String of day number of year of Gregorian DATE. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2645 Defaults to today's date if DATE is not given." |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2646 (let* ((d (or date (calendar-current-date))) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2647 (year (extract-calendar-year d)) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2648 (day (calendar-day-number d)) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2649 (days-remaining (- (calendar-day-number (list 12 31 year)) day))) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2650 (format "Day %d of %d; %d day%s remaining in the year" |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2651 day year days-remaining (if (= days-remaining 1) "" "s")))) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2652 |
957 | 2653 (defun calendar-print-day-of-year () |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2654 "Show day number in year/days remaining in year for date under the cursor." |
628 | 2655 (interactive) |
5829
d266967cc1cc
(calendar-mode-line-format): Change "current" to "today".
Richard M. Stallman <rms@gnu.org>
parents:
5771
diff
changeset
|
2656 (message (calendar-day-of-year-string (calendar-cursor-to-date t)))) |
628 | 2657 |
2658 (defun calendar-absolute-from-iso (date) | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2659 "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2660 The `ISO year' corresponds approximately to the Gregorian year, but |
628 | 2661 weeks start on Monday and end on Sunday. The first week of the ISO year is |
2662 the first such week in which at least 4 days are in a year. The ISO | |
2663 commercial DATE has the form (week day year) in which week is in the range | |
2664 1..52 and day is in the range 0..6 (1 = Monday, 2 = Tuesday, ..., 0 = | |
4652
0f5527e47955
* calendar.el (calendar-absolute-from-iso,
Jim Blandy <jimb@redhat.com>
parents:
4530
diff
changeset
|
2665 Sunday). The Gregorian date Sunday, December 31, 1 BC is imaginary." |
628 | 2666 (let* ((week (extract-calendar-month date)) |
2667 (day (extract-calendar-day date)) | |
2668 (year (extract-calendar-year date))) | |
2669 (+ (calendar-dayname-on-or-before | |
2670 1 (+ 3 (calendar-absolute-from-gregorian (list 1 1 year)))) | |
2671 (* 7 (1- week)) | |
2672 (if (= day 0) 6 (1- day))))) | |
2673 | |
2674 (defun calendar-iso-from-absolute (date) | |
2675 "Compute the `ISO commercial date' corresponding to the absolute DATE. | |
2676 The ISO year corresponds approximately to the Gregorian year, but weeks | |
2677 start on Monday and end on Sunday. The first week of the ISO year is the | |
2678 first such week in which at least 4 days are in a year. The ISO commercial | |
2679 date has the form (week day year) in which week is in the range 1..52 and | |
2680 day is in the range 0..6 (1 = Monday, 2 = Tuesday, ..., 0 = Sunday). The | |
2681 absolute date is the number of days elapsed since the (imaginary) Gregorian | |
2682 date Sunday, December 31, 1 BC." | |
2683 (let* ((approx (extract-calendar-year | |
2684 (calendar-gregorian-from-absolute (- date 3)))) | |
2685 (year (+ approx | |
2686 (calendar-sum y approx | |
2687 (>= date (calendar-absolute-from-iso (list 1 1 (1+ y)))) | |
2688 1)))) | |
2689 (list | |
2690 (1+ (/ (- date (calendar-absolute-from-iso (list 1 1 year))) 7)) | |
2691 (% date 7) | |
2692 year))) | |
2693 | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2694 (defun calendar-iso-date-string (&optional date) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2695 "String of ISO date of Gregorian DATE. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2696 Defaults to today's date if DATE is not given." |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2697 (let* ((d (calendar-absolute-from-gregorian |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2698 (or date (calendar-current-date)))) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2699 (day (% d 7)) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2700 (iso-date (calendar-iso-from-absolute d))) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2701 (format "Day %s of week %d of %d." |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2702 (if (zerop day) 7 day) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2703 (extract-calendar-month iso-date) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2704 (extract-calendar-year iso-date)))) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2705 |
957 | 2706 (defun calendar-print-iso-date () |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2707 "Show equivalent ISO date for the date under the cursor." |
628 | 2708 (interactive) |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2709 (message "ISO date: %s" |
5829
d266967cc1cc
(calendar-mode-line-format): Change "current" to "today".
Richard M. Stallman <rms@gnu.org>
parents:
5771
diff
changeset
|
2710 (calendar-iso-date-string (calendar-cursor-to-date t)))) |
628 | 2711 |
2712 (defun calendar-julian-from-absolute (date) | |
2713 "Compute the Julian (month day year) corresponding to the absolute DATE. | |
2714 The absolute date is the number of days elapsed since the (imaginary) | |
2715 Gregorian date Sunday, December 31, 1 BC." | |
2716 (let* ((approx (/ (+ date 2) 366));; Approximation from below. | |
2717 (year ;; Search forward from the approximation. | |
2718 (+ approx | |
2719 (calendar-sum y approx | |
2720 (>= date (calendar-absolute-from-julian (list 1 1 (1+ y)))) | |
2721 1))) | |
2722 (month ;; Search forward from January. | |
2723 (1+ (calendar-sum m 1 | |
2724 (> date | |
2725 (calendar-absolute-from-julian | |
2726 (list m | |
2727 (if (and (= m 2) (= (% year 4) 0)) | |
2728 29 | |
2729 (aref [31 28 31 30 31 30 31 31 30 31 30 31] | |
2730 (1- m))) | |
2731 year))) | |
2732 1))) | |
2733 (day ;; Calculate the day by subtraction. | |
2734 (- date (1- (calendar-absolute-from-julian (list month 1 year)))))) | |
2735 (list month day year))) | |
2736 | |
2737 (defun calendar-absolute-from-julian (date) | |
2738 "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE. | |
2739 The Gregorian date Sunday, December 31, 1 BC is imaginary." | |
2740 (let ((month (extract-calendar-month date)) | |
2741 (day (extract-calendar-day date)) | |
2742 (year (extract-calendar-year date))) | |
2743 (+ (calendar-day-number date) | |
2744 (if (and (= (% year 100) 0) | |
2745 (/= (% year 400) 0) | |
2746 (> month 2)) | |
2747 1 0);; Correct for Julian but not Gregorian leap year. | |
2748 (* 365 (1- year)) | |
2749 (/ (1- year) 4) | |
2750 -2))) | |
2751 | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2752 (defun calendar-julian-date-string (&optional date) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2753 "String of Julian date of Gregorian DATE. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2754 Defaults to today's date if DATE is not given. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2755 Driven by the variable `calendar-date-display-form'." |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2756 (calendar-date-string |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2757 (calendar-julian-from-absolute |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2758 (calendar-absolute-from-gregorian |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2759 (or date (calendar-current-date)))) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2760 nil t)) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2761 |
957 | 2762 (defun calendar-print-julian-date () |
628 | 2763 "Show the Julian calendar equivalent of the date under the cursor." |
2764 (interactive) | |
957 | 2765 (message "Julian date: %s" |
5829
d266967cc1cc
(calendar-mode-line-format): Change "current" to "today".
Richard M. Stallman <rms@gnu.org>
parents:
5771
diff
changeset
|
2766 (calendar-julian-date-string (calendar-cursor-to-date t)))) |
628 | 2767 |
2768 (defun islamic-calendar-leap-year-p (year) | |
2769 "Returns t if YEAR is a leap year on the Islamic calendar." | |
2770 (memq (% year 30) | |
2771 (list 2 5 7 10 13 16 18 21 24 26 29))) | |
2772 | |
2773 (defun islamic-calendar-last-day-of-month (month year) | |
2774 "The last day in MONTH during YEAR on the Islamic calendar." | |
2775 (cond | |
2776 ((memq month (list 1 3 5 7 9 11)) 30) | |
2777 ((memq month (list 2 4 6 8 10)) 29) | |
2778 (t (if (islamic-calendar-leap-year-p year) 30 29)))) | |
2779 | |
2780 (defun islamic-calendar-day-number (date) | |
2781 "Return the day number within the year of the Islamic date DATE." | |
2782 (let* ((month (extract-calendar-month date)) | |
2783 (day (extract-calendar-day date))) | |
2784 (+ (* 30 (/ month 2)) | |
2785 (* 29 (/ (1- month) 2)) | |
2786 day))) | |
2787 | |
2788 (defun calendar-absolute-from-islamic (date) | |
2789 "Absolute date of Islamic DATE. | |
2790 The absolute date is the number of days elapsed since the (imaginary) | |
2791 Gregorian date Sunday, December 31, 1 BC." | |
2792 (let* ((month (extract-calendar-month date)) | |
2793 (day (extract-calendar-day date)) | |
2794 (year (extract-calendar-year date)) | |
2795 (y (% year 30)) | |
2796 (leap-years-in-cycle | |
2797 (cond | |
2798 ((< y 3) 0) ((< y 6) 1) ((< y 8) 2) ((< y 11) 3) ((< y 14) 4) | |
2799 ((< y 17) 5) ((< y 19) 6) ((< y 22) 7) ((< y 25) 8) ((< y 27) 9) | |
2800 (t 10)))) | |
2801 (+ (islamic-calendar-day-number date);; days so far this year | |
2802 (* (1- year) 354) ;; days in all non-leap years | |
2803 (* 11 (/ year 30)) ;; leap days in complete cycles | |
2804 leap-years-in-cycle ;; leap days this cycle | |
2805 227014))) ;; days before start of calendar | |
2806 | |
2807 (defun calendar-islamic-from-absolute (date) | |
2808 "Compute the Islamic date (month day year) corresponding to absolute DATE. | |
2809 The absolute date is the number of days elapsed since the (imaginary) | |
2810 Gregorian date Sunday, December 31, 1 BC." | |
2811 (if (< date 227015) | |
2812 (list 0 0 0);; pre-Islamic date | |
2813 (let* ((approx (/ (- date 227014) 355));; Approximation from below. | |
2814 (year ;; Search forward from the approximation. | |
2815 (+ approx | |
2816 (calendar-sum y approx | |
2817 (>= date (calendar-absolute-from-islamic | |
2818 (list 1 1 (1+ y)))) | |
2819 1))) | |
2820 (month ;; Search forward from Muharram. | |
2821 (1+ (calendar-sum m 1 | |
2822 (> date | |
2823 (calendar-absolute-from-islamic | |
2824 (list m | |
2825 (islamic-calendar-last-day-of-month | |
2826 m year) | |
2827 year))) | |
2828 1))) | |
2829 (day ;; Calculate the day by subtraction. | |
2830 (- date | |
2831 (1- (calendar-absolute-from-islamic (list month 1 year)))))) | |
2832 (list month day year)))) | |
2833 | |
4861
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2834 (defvar calendar-islamic-month-name-array |
628 | 2835 ["Muharram" "Safar" "Rabi I" "Rabi II" "Jumada I" "Jumada II" |
2836 "Rajab" "Sha'ban" "Ramadan" "Shawwal" "Dhu al-Qada" "Dhu al-Hijjah"]) | |
2837 | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2838 (defun calendar-islamic-date-string (&optional date) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2839 "String of Islamic date before sunset of Gregorian DATE. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2840 Returns the empty string if DATE is pre-Islamic. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2841 Defaults to today's date if DATE is not given. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2842 Driven by the variable `calendar-date-display-form'." |
957 | 2843 (let ((calendar-month-name-array calendar-islamic-month-name-array) |
628 | 2844 (islamic-date (calendar-islamic-from-absolute |
2845 (calendar-absolute-from-gregorian | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2846 (or date (calendar-current-date)))))) |
628 | 2847 (if (< (extract-calendar-year islamic-date) 1) |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2848 "" |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2849 (calendar-date-string islamic-date nil t)))) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2850 |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2851 (defun calendar-print-islamic-date () |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2852 "Show the Islamic calendar equivalent of the date under the cursor." |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2853 (interactive) |
5829
d266967cc1cc
(calendar-mode-line-format): Change "current" to "today".
Richard M. Stallman <rms@gnu.org>
parents:
5771
diff
changeset
|
2854 (let ((i (calendar-islamic-date-string (calendar-cursor-to-date t)))) |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2855 (if (string-equal i "") |
628 | 2856 (message "Date is pre-Islamic") |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2857 (message "Islamic date (until sunset): %s" i)))) |
628 | 2858 |
2859 (defun calendar-hebrew-from-absolute (date) | |
2860 "Compute the Hebrew date (month day year) corresponding to absolute DATE. | |
2861 The absolute date is the number of days elapsed since the (imaginary) | |
2862 Gregorian date Sunday, December 31, 1 BC." | |
2863 (let* ((greg-date (calendar-gregorian-from-absolute date)) | |
2864 (month (aref [9 10 11 12 1 2 3 4 7 7 7 8] | |
2865 (1- (extract-calendar-month greg-date)))) | |
2866 (day) | |
2867 (year (+ 3760 (extract-calendar-year greg-date)))) | |
2868 (while (>= date (calendar-absolute-from-hebrew (list 7 1 (1+ year)))) | |
2869 (setq year (1+ year))) | |
2870 (let ((length (hebrew-calendar-last-month-of-year year))) | |
2871 (while (> date | |
2872 (calendar-absolute-from-hebrew | |
2873 (list month | |
2874 (hebrew-calendar-last-day-of-month month year) | |
2875 year))) | |
2876 (setq month (1+ (% month length))))) | |
2877 (setq day (1+ | |
2878 (- date (calendar-absolute-from-hebrew (list month 1 year))))) | |
2879 (list month day year))) | |
2880 | |
2881 (defun hebrew-calendar-leap-year-p (year) | |
2882 "t if YEAR is a Hebrew calendar leap year." | |
2883 (< (% (1+ (* 7 year)) 19) 7)) | |
2884 | |
2885 (defun hebrew-calendar-last-month-of-year (year) | |
2886 "The last month of the Hebrew calendar YEAR." | |
2887 (if (hebrew-calendar-leap-year-p year) | |
2888 13 | |
2889 12)) | |
2890 | |
2891 (defun hebrew-calendar-last-day-of-month (month year) | |
2892 "The last day of MONTH in YEAR." | |
2893 (if (or (memq month (list 2 4 6 10 13)) | |
2894 (and (= month 12) (not (hebrew-calendar-leap-year-p year))) | |
2895 (and (= month 8) (not (hebrew-calendar-long-heshvan-p year))) | |
2896 (and (= month 9) (hebrew-calendar-short-kislev-p year))) | |
2897 29 | |
2898 30)) | |
2899 | |
2900 (defun hebrew-calendar-elapsed-days (year) | |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
2901 "Days from Sun. prior to start of Hebrew calendar to mean conjunction of Tishri of Hebrew YEAR." |
628 | 2902 (let* ((months-elapsed |
2903 (+ (* 235 (/ (1- year) 19));; Months in complete cycles so far. | |
2904 (* 12 (% (1- year) 19)) ;; Regular months in this cycle | |
2905 (/ (1+ (* 7 (% (1- year) 19))) 19)));; Leap months this cycle | |
2906 (parts-elapsed (+ 204 (* 793 (% months-elapsed 1080)))) | |
2907 (hours-elapsed (+ 5 | |
2908 (* 12 months-elapsed) | |
2909 (* 793 (/ months-elapsed 1080)) | |
2910 (/ parts-elapsed 1080))) | |
2911 (parts ;; Conjunction parts | |
2912 (+ (* 1080 (% hours-elapsed 24)) (% parts-elapsed 1080))) | |
2913 (day ;; Conjunction day | |
2914 (+ 1 (* 29 months-elapsed) (/ hours-elapsed 24))) | |
2915 (alternative-day | |
2916 (if (or (>= parts 19440) ;; If the new moon is at or after midday, | |
2917 (and (= (% day 7) 2);; ...or is on a Tuesday... | |
2918 (>= parts 9924) ;; at 9 hours, 204 parts or later... | |
2919 (not (hebrew-calendar-leap-year-p year)));; of a | |
2920 ;; common year, | |
2921 (and (= (% day 7) 1);; ...or is on a Monday... | |
2922 (>= parts 16789) ;; at 15 hours, 589 parts or later... | |
2923 (hebrew-calendar-leap-year-p (1- year))));; at the end | |
2924 ;; of a leap year | |
2925 ;; Then postpone Rosh HaShanah one day | |
2926 (1+ day) | |
2927 ;; Else | |
2928 day))) | |
2929 (if ;; If Rosh HaShanah would occur on Sunday, Wednesday, or Friday | |
2930 (memq (% alternative-day 7) (list 0 3 5)) | |
2931 ;; Then postpone it one (more) day and return | |
2932 (1+ alternative-day) | |
2933 ;; Else return | |
2934 alternative-day))) | |
2935 | |
2936 (defun hebrew-calendar-days-in-year (year) | |
2937 "Number of days in Hebrew YEAR." | |
2938 (- (hebrew-calendar-elapsed-days (1+ year)) | |
2939 (hebrew-calendar-elapsed-days year))) | |
2940 | |
2941 (defun hebrew-calendar-long-heshvan-p (year) | |
2942 "t if Heshvan is long in Hebrew YEAR." | |
2943 (= (% (hebrew-calendar-days-in-year year) 10) 5)) | |
2944 | |
2945 (defun hebrew-calendar-short-kislev-p (year) | |
2946 "t if Kislev is short in Hebrew YEAR." | |
2947 (= (% (hebrew-calendar-days-in-year year) 10) 3)) | |
2948 | |
2949 (defun calendar-absolute-from-hebrew (date) | |
2950 "Absolute date of Hebrew DATE. | |
2951 The absolute date is the number of days elapsed since the (imaginary) | |
2952 Gregorian date Sunday, December 31, 1 BC." | |
2953 (let* ((month (extract-calendar-month date)) | |
2954 (day (extract-calendar-day date)) | |
2955 (year (extract-calendar-year date))) | |
2956 (+ day ;; Days so far this month. | |
2957 (if (< month 7);; before Tishri | |
2958 ;; Then add days in prior months this year before and after Nisan | |
2959 (+ (calendar-sum | |
2960 m 7 (<= m (hebrew-calendar-last-month-of-year year)) | |
2961 (hebrew-calendar-last-day-of-month m year)) | |
2962 (calendar-sum | |
2963 m 1 (< m month) | |
2964 (hebrew-calendar-last-day-of-month m year))) | |
2965 ;; Else add days in prior months this year | |
2966 (calendar-sum | |
2967 m 7 (< m month) | |
2968 (hebrew-calendar-last-day-of-month m year))) | |
2969 (hebrew-calendar-elapsed-days year);; Days in prior years. | |
2970 -1373429))) ;; Days elapsed before absolute date 1. | |
2971 | |
4861
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2972 (defvar calendar-hebrew-month-name-array-common-year |
628 | 2973 ["Nisan" "Iyar" "Sivan" "Tammuz" "Av" "Elul" "Tishri" |
2974 "Heshvan" "Kislev" "Teveth" "Shevat" "Adar"]) | |
2975 | |
4861
924486090b27
(calendar-week-start-day): New var (autoloaded) to
Richard M. Stallman <rms@gnu.org>
parents:
4658
diff
changeset
|
2976 (defvar calendar-hebrew-month-name-array-leap-year |
628 | 2977 ["Nisan" "Iyar" "Sivan" "Tammuz" "Av" "Elul" "Tishri" |
2978 "Heshvan" "Kislev" "Teveth" "Shevat" "Adar I" "Adar II"]) | |
2979 | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2980 (defun calendar-hebrew-date-string (&optional date) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2981 "String of Hebrew date before sunset of Gregorian DATE. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2982 Defaults to today's date if DATE is not given. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2983 Driven by the variable `calendar-date-display-form'." |
957 | 2984 (let* ((hebrew-date (calendar-hebrew-from-absolute |
628 | 2985 (calendar-absolute-from-gregorian |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2986 (or date (calendar-current-date))))) |
628 | 2987 (calendar-month-name-array |
2988 (if (hebrew-calendar-leap-year-p (extract-calendar-year hebrew-date)) | |
2989 calendar-hebrew-month-name-array-leap-year | |
2990 calendar-hebrew-month-name-array-common-year))) | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2991 (calendar-date-string hebrew-date nil t))) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2992 |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2993 (defun calendar-print-hebrew-date () |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2994 "Show the Hebrew calendar equivalent of the date under the cursor." |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2995 (interactive) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
2996 (message "Hebrew date (until sunset): %s" |
5829
d266967cc1cc
(calendar-mode-line-format): Change "current" to "today".
Richard M. Stallman <rms@gnu.org>
parents:
5771
diff
changeset
|
2997 (calendar-hebrew-date-string (calendar-cursor-to-date t)))) |
628 | 2998 |
732 | 2999 (defun hebrew-calendar-yahrzeit (death-date year) |
3000 "Absolute date of the anniversary of Hebrew DEATH-DATE in Hebrew YEAR." | |
3001 (let* ((death-day (extract-calendar-day death-date)) | |
3002 (death-month (extract-calendar-month death-date)) | |
3003 (death-year (extract-calendar-year death-date))) | |
3004 (cond | |
3005 ;; If it's Heshvan 30 it depends on the first anniversary; if | |
3006 ;; that was not Heshvan 30, use the day before Kislev 1. | |
3007 ((and (= death-month 8) | |
3008 (= death-day 30) | |
3009 (not (hebrew-calendar-long-heshvan-p (1+ death-year)))) | |
3010 (1- (calendar-absolute-from-hebrew (list 9 1 year)))) | |
3011 ;; If it's Kislev 30 it depends on the first anniversary; if | |
3012 ;; that was not Kislev 30, use the day before Teveth 1. | |
3013 ((and (= death-month 9) | |
3014 (= death-day 30) | |
3015 (hebrew-calendar-short-kislev-p (1+ death-year))) | |
3016 (1- (calendar-absolute-from-hebrew (list 10 1 year)))) | |
3017 ;; If it's Adar II, use the same day in last month of | |
3018 ;; year (Adar or Adar II). | |
3019 ((= death-month 13) | |
3020 (calendar-absolute-from-hebrew | |
2107
1c718ee07ac9
* calendar.el (hebrew-calendar-yahrzeit): Change reference to
Jim Blandy <jimb@redhat.com>
parents:
957
diff
changeset
|
3021 (list (hebrew-calendar-last-month-of-year year) death-day year))) |
2905
be10f559ebe4
* calendar.el (hebrew-calendar-yahrzeit): Correct error from S-P&E
Jim Blandy <jimb@redhat.com>
parents:
2688
diff
changeset
|
3022 ;; If it's the 30th in Adar I and year is not a leap year |
732 | 3023 ;; (so Adar has only 29 days), use the last day in Shevat. |
3024 ((and (= death-day 30) | |
3025 (= death-month 12) | |
2905
be10f559ebe4
* calendar.el (hebrew-calendar-yahrzeit): Correct error from S-P&E
Jim Blandy <jimb@redhat.com>
parents:
2688
diff
changeset
|
3026 (not (hebrew-calendar-leap-year-p year))) |
732 | 3027 (calendar-absolute-from-hebrew (list 11 30 year))) |
3028 ;; In all other cases, use the normal anniversary of the date of death. | |
3029 (t (calendar-absolute-from-hebrew | |
3030 (list death-month death-day year)))))) | |
3031 | |
957 | 3032 (defun calendar-set-mode-line (str) |
3033 "Set mode line to STR, centered, surrounded by dashes." | |
3034 (setq mode-line-format | |
3035 (calendar-string-spread (list "" str "") ?- (frame-width)))) | |
3036 | |
3037 ;;;###autoload | |
732 | 3038 (defun list-yahrzeit-dates (death-date start-year end-year) |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
3039 "List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR. |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
3040 When called interactively from the calendar window, the date of death is taken |
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
3041 from the cursor position." |
732 | 3042 (interactive |
957 | 3043 (let* ((death-date |
3044 (if (equal (current-buffer) (get-buffer calendar-buffer)) | |
3045 (calendar-cursor-to-date) | |
3046 (let* ((today (calendar-current-date)) | |
3047 (year (calendar-read | |
3048 "Year of death (>0): " | |
3049 '(lambda (x) (> x 0)) | |
3050 (int-to-string (extract-calendar-year today)))) | |
3051 (month-array calendar-month-name-array) | |
3052 (completion-ignore-case t) | |
3053 (month (cdr (assoc | |
3054 (capitalize | |
3055 (completing-read | |
3056 "Month of death (name): " | |
3057 (mapcar 'list (append month-array nil)) | |
3058 nil t)) | |
3059 (calendar-make-alist | |
3060 month-array 1 'capitalize)))) | |
3061 (last (calendar-last-day-of-month month year)) | |
3062 (day (calendar-read | |
3063 (format "Day of death (1-%d): " last) | |
3064 '(lambda (x) (and (< 0 x) (<= x last)))))) | |
3065 (list month day year)))) | |
732 | 3066 (death-year (extract-calendar-year death-date)) |
3067 (start-year (calendar-read | |
3068 (format "Starting year of Yahrzeit table (>%d): " | |
3069 death-year) | |
3070 '(lambda (x) (> x death-year)) | |
3071 (int-to-string (1+ death-year)))) | |
3072 (end-year (calendar-read | |
3073 (format "Ending year of Yahrzeit table (>=%d): " | |
3074 start-year) | |
3075 '(lambda (x) (>= x start-year))))) | |
3076 (list death-date start-year end-year))) | |
3077 (message "Computing yahrzeits...") | |
3078 (let* ((yahrzeit-buffer "*Yahrzeits*") | |
3079 (h-date (calendar-hebrew-from-absolute | |
3080 (calendar-absolute-from-gregorian death-date))) | |
3081 (h-month (extract-calendar-month h-date)) | |
3082 (h-day (extract-calendar-day h-date)) | |
3083 (h-year (extract-calendar-year h-date))) | |
3084 (set-buffer (get-buffer-create yahrzeit-buffer)) | |
3085 (setq buffer-read-only nil) | |
957 | 3086 (calendar-set-mode-line |
3087 (format "Yahrzeit dates for %s = %s" | |
732 | 3088 (calendar-date-string death-date) |
3089 (let ((calendar-month-name-array | |
3090 (if (hebrew-calendar-leap-year-p h-year) | |
3091 calendar-hebrew-month-name-array-leap-year | |
957 | 3092 calendar-hebrew-month-name-array-common-year))) |
732 | 3093 (calendar-date-string h-date nil t)))) |
3094 (erase-buffer) | |
3095 (goto-char (point-min)) | |
3096 (calendar-for-loop i from start-year to end-year do | |
3097 (insert | |
3098 (calendar-date-string | |
3099 (calendar-gregorian-from-absolute | |
3100 (hebrew-calendar-yahrzeit | |
3101 h-date | |
3102 (extract-calendar-year | |
3103 (calendar-hebrew-from-absolute | |
3104 (calendar-absolute-from-gregorian (list 1 1 i))))))) "\n")) | |
3105 (goto-char (point-min)) | |
3106 (set-buffer-modified-p nil) | |
3107 (setq buffer-read-only t) | |
3108 (display-buffer yahrzeit-buffer) | |
3109 (message "Computing yahrzeits...done"))) | |
3110 | |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
3111 (defun calendar-astro-date-string (&optional date) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
3112 "String of astronomical (Julian) day number of afternoon of Gregorian DATE. |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
3113 Defaults to today's date if DATE is not given." |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
3114 (int-to-string |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
3115 (+ 1721425 (calendar-absolute-from-gregorian |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
3116 (or date (calendar-current-date)))))) |
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
3117 |
957 | 3118 (defun calendar-print-astro-day-number () |
3865
2c6883d0a1b2
* calendar.el (calendar-version): Update to 5.1. Fixed a variety
Jim Blandy <jimb@redhat.com>
parents:
3778
diff
changeset
|
3119 "Show astronomical (Julian) day number of afternoon on date shown by cursor." |
628 | 3120 (interactive) |
957 | 3121 (message |
5694
69471d331d0c
(calendar-version): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5272
diff
changeset
|
3122 "Astronomical (Julian) day number after noon UTC: %s" |
5829
d266967cc1cc
(calendar-mode-line-format): Change "current" to "today".
Richard M. Stallman <rms@gnu.org>
parents:
5771
diff
changeset
|
3123 (calendar-astro-date-string (calendar-cursor-to-date t)))) |
957 | 3124 |
3125 (defun calendar-goto-astro-day-number (daynumber &optional noecho) | |
3126 "Move cursor to astronomical (Julian) DAYNUMBER. | |
3127 Echo astronomical (Julian) day number unless NOECHO is t." | |
3128 (interactive (list (calendar-read | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3448
diff
changeset
|
3129 "Astronomical (Julian) day number (>1721425): " |
957 | 3130 '(lambda (x) (> x 1721425))))) |
3131 (calendar-goto-date (calendar-gregorian-from-absolute (- daynumber 1721425))) | |
3132 (or noecho (calendar-print-astro-day-number))) | |
3133 | |
3134 (run-hooks 'calendar-load-hook) | |
628 | 3135 |
3136 (provide 'calendar) | |
3137 | |
675
85fd29f25c75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
628
diff
changeset
|
3138 ;;; calendar.el ends here |