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