Prevent core dump when connection is lost during frame creation.
[emacs.git] / man / calendar.texi
blob747a6b822df150078ef6aaa0bbf4f6a190a71ca6
1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001,
3 @c               2005  Free Software Foundation, Inc.
4 @c See file emacs.texi for copying conditions.
5 @node Calendar/Diary, Gnus, Dired, Top
6 @chapter The Calendar and the Diary
7 @cindex calendar
8 @findex calendar
10   Emacs provides the functions of a desk calendar, with a diary of
11 planned or past events.  It also has facilities for managing your
12 appointments, and keeping track of how much time you spend working on
13 certain projects.
15   To enter the calendar, type @kbd{M-x calendar}; this displays a
16 three-month calendar centered on the current month, with point on the
17 current date.  With a numeric argument, as in @kbd{C-u M-x calendar}, it
18 prompts you for the month and year to be the center of the three-month
19 calendar.  The calendar uses its own buffer, whose major mode is
20 Calendar mode.
22   @kbd{Mouse-2} in the calendar brings up a menu of operations on a
23 particular date; @kbd{Mouse-3} brings up a menu of commonly used
24 calendar features that are independent of any particular date.  To exit
25 the calendar, type @kbd{q}.
27 The basic features of the Calendar/Diary are described here.
28 @inforef{Advanced Calendar/Diary Usage,, emacs-xtra}, for information
29 about more specialized features.
31 @menu
32 * Calendar Motion::     Moving through the calendar; selecting a date.
33 * Scroll Calendar::     Bringing earlier or later months onto the screen.
34 * Counting Days::       How many days are there between two dates?
35 * General Calendar::    Exiting or recomputing the calendar.
36 * LaTeX Calendar::      Print a calendar using LaTeX.
37 * Holidays::            Displaying dates of holidays.
38 * Sunrise/Sunset::      Displaying local times of sunrise and sunset.
39 * Lunar Phases::        Displaying phases of the moon.
40 * Other Calendars::     Converting dates to other calendar systems.
41 * Diary::               Displaying events from your diary.
42 * Appointments::        Reminders when it's time to do something.
43 * Importing Diary::     Converting diary events to/from other formats.
44 * Daylight Savings::    How to specify when daylight savings time is active.
45 * Time Intervals::      Keeping track of time intervals.
46 @end menu
48 @node Calendar Motion
49 @section Movement in the Calendar
51 @cindex moving inside the calendar
52   Calendar mode lets you move through the calendar in logical units of
53 time such as days, weeks, months, and years.  If you move outside the
54 three months originally displayed, the calendar display ``scrolls''
55 automatically through time to make the selected date visible.  Moving to
56 a date lets you view its holidays or diary entries, or convert it to other
57 calendars; moving longer time periods is also useful simply to scroll the
58 calendar.
60 @menu
61 * Calendar Unit Motion::      Moving by days, weeks, months, and years.
62 * Move to Beginning or End::  Moving to start/end of weeks, months, and years.
63 * Specified Dates::           Moving to the current date or another
64                                 specific date.
65 @end menu
67 @node Calendar Unit Motion
68 @subsection Motion by Standard Lengths of Time
70   The commands for movement in the calendar buffer parallel the
71 commands for movement in text.  You can move forward and backward by
72 days, weeks, months, and years.
74 @table @kbd
75 @item C-f
76 Move point one day forward (@code{calendar-forward-day}).
77 @item C-b
78 Move point one day backward (@code{calendar-backward-day}).
79 @item C-n
80 Move point one week forward (@code{calendar-forward-week}).
81 @item C-p
82 Move point one week backward (@code{calendar-backward-week}).
83 @item M-@}
84 Move point one month forward (@code{calendar-forward-month}).
85 @item M-@{
86 Move point one month backward (@code{calendar-backward-month}).
87 @item C-x ]
88 Move point one year forward (@code{calendar-forward-year}).
89 @item C-x [
90 Move point one year backward (@code{calendar-backward-year}).
91 @end table
93 @kindex C-f @r{(Calendar mode)}
94 @findex calendar-forward-day
95 @kindex C-b @r{(Calendar mode)}
96 @findex calendar-backward-day
97 @kindex C-n @r{(Calendar mode)}
98 @findex calendar-forward-week
99 @kindex C-p @r{(Calendar mode)}
100 @findex calendar-backward-week
101   The day and week commands are natural analogues of the usual Emacs
102 commands for moving by characters and by lines.  Just as @kbd{C-n}
103 usually moves to the same column in the following line, in Calendar
104 mode it moves to the same day in the following week.  And @kbd{C-p}
105 moves to the same day in the previous week.
107   The arrow keys are equivalent to @kbd{C-f}, @kbd{C-b}, @kbd{C-n} and
108 @kbd{C-p}, just as they normally are in other modes.
110 @kindex M-@} @r{(Calendar mode)}
111 @findex calendar-forward-month
112 @kindex M-@{ @r{(Calendar mode)}
113 @findex calendar-backward-month
114 @kindex C-x ] @r{(Calendar mode)}
115 @findex calendar-forward-year
116 @kindex C-x [ @r{(Calendar mode)}
117 @findex calendar-forward-year
118   The commands for motion by months and years work like those for
119 weeks, but move a larger distance.  The month commands @kbd{M-@}} and
120 @kbd{M-@{} move forward or backward by an entire month's time.  The
121 year commands @kbd{C-x ]} and @w{@kbd{C-x [}} move forward or backward a
122 whole year.
124   The easiest way to remember these commands is to consider months and
125 years analogous to paragraphs and pages of text, respectively.  But the
126 commands themselves are not quite analogous.  The ordinary Emacs paragraph
127 commands move to the beginning or end of a paragraph, whereas these month
128 and year commands move by an entire month or an entire year, which usually
129 involves skipping across the end of a month or year.
131   All these commands accept a numeric argument as a repeat count.
132 For convenience, the digit keys and the minus sign specify numeric
133 arguments in Calendar mode even without the Meta modifier.  For example,
134 @kbd{100 C-f} moves point 100 days forward from its present location.
136 @node Move to Beginning or End
137 @subsection Beginning or End of Week, Month or Year
139   A week (or month, or year) is not just a quantity of days; we think of
140 weeks (months, years) as starting on particular dates.  So Calendar mode
141 provides commands to move to the beginning or end of a week, month or
142 year:
144 @table @kbd
145 @kindex C-a @r{(Calendar mode)}
146 @findex calendar-beginning-of-week
147 @item C-a
148 Move point to start of week (@code{calendar-beginning-of-week}).
149 @kindex C-e @r{(Calendar mode)}
150 @findex calendar-end-of-week
151 @item C-e
152 Move point to end of week (@code{calendar-end-of-week}).
153 @kindex M-a @r{(Calendar mode)}
154 @findex calendar-beginning-of-month
155 @item M-a
156 Move point to start of month (@code{calendar-beginning-of-month}).
157 @kindex M-e @r{(Calendar mode)}
158 @findex calendar-end-of-month
159 @item M-e
160 Move point to end of month (@code{calendar-end-of-month}).
161 @kindex M-< @r{(Calendar mode)}
162 @findex calendar-beginning-of-year
163 @item M-<
164 Move point to start of year (@code{calendar-beginning-of-year}).
165 @kindex M-> @r{(Calendar mode)}
166 @findex calendar-end-of-year
167 @item M->
168 Move point to end of year (@code{calendar-end-of-year}).
169 @end table
171   These commands also take numeric arguments as repeat counts, with the
172 repeat count indicating how many weeks, months, or years to move
173 backward or forward.
175 @vindex calendar-week-start-day
176 @cindex weeks, which day they start on
177 @cindex calendar, first day of week
178   By default, weeks begin on Sunday.  To make them begin on Monday
179 instead, set the variable @code{calendar-week-start-day} to 1.
181 @node Specified Dates
182 @subsection Specified Dates
184   Calendar mode provides commands for moving to a particular date
185 specified in various ways.
187 @table @kbd
188 @item g d
189 Move point to specified date (@code{calendar-goto-date}).
190 @item g D
191 Move point to specified day of year (@code{calendar-goto-day-of-year}).
192 @item g w
193 Move point to specified week of year (@code{calendar-goto-iso-week}).
194 @item o
195 Center calendar around specified month (@code{calendar-other-month}).
196 @item .
197 Move point to today's date (@code{calendar-goto-today}).
198 @end table
200 @kindex g d @r{(Calendar mode)}
201 @findex calendar-goto-date
202   @kbd{g d} (@code{calendar-goto-date}) prompts for a year, a month, and a day
203 of the month, and then moves to that date.  Because the calendar includes all
204 dates from the beginning of the current era, you must type the year in its
205 entirety; that is, type @samp{1990}, not @samp{90}.
207 @kindex g D @r{(Calendar mode)}
208 @findex calendar-goto-day-of-year
209 @kindex g w @r{(Calendar mode)}
210 @findex calendar-goto-iso-week
211   @kbd{g D} (@code{calendar-goto-day-of-year}) prompts for a year and
212 day number, and moves to that date.  Negative day numbers count
213 backward from the end of the year.  @kbd{g w}
214 (@code{calendar-goto-iso-week}) prompts for a year and week number,
215 and moves to that week.
217 @kindex o @r{(Calendar mode)}
218 @findex calendar-other-month
219   @kbd{o} (@code{calendar-other-month}) prompts for a month and year,
220 then centers the three-month calendar around that month.
222 @kindex . @r{(Calendar mode)}
223 @findex calendar-goto-today
224   You can return to today's date with @kbd{.}@:
225 (@code{calendar-goto-today}).
227 @node Scroll Calendar
228 @section Scrolling in the Calendar
230 @cindex scrolling in the calendar
231   The calendar display scrolls automatically through time when you
232 move out of the visible portion.  You can also scroll it manually.
233 Imagine that the calendar window contains a long strip of paper with
234 the months on it.  Scrolling the calendar means moving the strip
235 horizontally, so that new months become visible in the window.
237 @table @kbd
238 @item C-x <
239 Scroll calendar one month forward (@code{scroll-calendar-left}).
240 @item C-x >
241 Scroll calendar one month backward (@code{scroll-calendar-right}).
242 @item C-v
243 @itemx @key{NEXT}
244 Scroll calendar three months forward
245 (@code{scroll-calendar-left-three-months}).
246 @item M-v
247 @itemx @key{PRIOR}
248 Scroll calendar three months backward
249 (@code{scroll-calendar-right-three-months}).
250 @end table
252 @kindex C-x < @r{(Calendar mode)}
253 @findex scroll-calendar-left
254 @kindex C-x > @r{(Calendar mode)}
255 @findex scroll-calendar-right
256   The most basic calendar scroll commands scroll by one month at a
257 time.  This means that there are two months of overlap between the
258 display before the command and the display after.  @kbd{C-x <} scrolls
259 the calendar contents one month to the left; that is, it moves the
260 display forward in time.  @kbd{C-x >} scrolls the contents to the
261 right, which moves backwards in time.
263 @kindex C-v @r{(Calendar mode)}
264 @findex scroll-calendar-left-three-months
265 @kindex M-v @r{(Calendar mode)}
266 @findex scroll-calendar-right-three-months
267   The commands @kbd{C-v} and @kbd{M-v} scroll the calendar by an entire
268 ``screenful''---three months---in analogy with the usual meaning of
269 these commands.  @kbd{C-v} makes later dates visible and @kbd{M-v} makes
270 earlier dates visible.  These commands take a numeric argument as a
271 repeat count; in particular, since @kbd{C-u} multiplies the next command
272 by four, typing @kbd{C-u C-v} scrolls the calendar forward by a year and
273 typing @kbd{C-u M-v} scrolls the calendar backward by a year.
275   The function keys @key{NEXT} and @key{PRIOR} are equivalent to
276 @kbd{C-v} and @kbd{M-v}, just as they are in other modes.
278 @node Counting Days
279 @section Counting Days
281 @table @kbd
282 @item M-=
283 Display the number of days in the current region
284 (@code{calendar-count-days-region}).
285 @end table
287 @kindex M-= @r{(Calendar mode)}
288 @findex calendar-count-days-region
289   To determine the number of days in the region, type @kbd{M-=}
290 (@code{calendar-count-days-region}).  The numbers of days shown is
291 @emph{inclusive}; that is, it includes the days specified by mark and
292 point.
294 @node General Calendar
295 @section Miscellaneous Calendar Commands
297 @table @kbd
298 @item p d
299 Display day-in-year (@code{calendar-print-day-of-year}).
300 @item C-c C-l
301 Regenerate the calendar window (@code{redraw-calendar}).
302 @item SPC
303 Scroll the next window up (@code{scroll-other-window}).
304 @item DEL
305 Scroll the next window down (@code{scroll-other-window-down}).
306 @item q
307 Exit from calendar (@code{exit-calendar}).
308 @end table
310 @kindex p d @r{(Calendar mode)}
311 @cindex day of year
312 @findex calendar-print-day-of-year
313   To display the number of days elapsed since the start of the year, or
314 the number of days remaining in the year, type the @kbd{p d} command
315 (@code{calendar-print-day-of-year}).  This displays both of those
316 numbers in the echo area.  The number of days elapsed includes the
317 selected date.  The number of days remaining does not include that
318 date.
320 @kindex C-c C-l @r{(Calendar mode)}
321 @findex redraw-calendar
322   If the calendar window text gets corrupted, type @kbd{C-c C-l}
323 (@code{redraw-calendar}) to redraw it.  (This can only happen if you use
324 non-Calendar-mode editing commands.)
326 @kindex SPC @r{(Calendar mode)}
327   In Calendar mode, you can use @kbd{SPC} (@code{scroll-other-window})
328 and @kbd{DEL} (@code{scroll-other-window-down}) to scroll the other
329 window up or down, respectively.  This is handy when you display a list
330 of holidays or diary entries in another window.
332 @kindex q @r{(Calendar mode)}
333 @findex exit-calendar
334   To exit from the calendar, type @kbd{q} (@code{exit-calendar}).  This
335 buries all buffers related to the calendar, selecting other buffers.
336 (If a frame contains a dedicated calendar window, exiting from the
337 calendar iconifies that frame.)
339 @node LaTeX Calendar
340 @section LaTeX Calendar
341 @cindex calendar and La@TeX{}
343    The Calendar La@TeX{} commands produce a buffer of La@TeX{} code that
344 prints as a calendar.  Depending on the command you use, the printed
345 calendar covers the day, week, month or year that point is in.
347 @kindex t @r{(Calendar mode)}
348 @table @kbd
349 @item t m
350 Generate a one-month calendar (@code{cal-tex-cursor-month}).
351 @item t M
352 Generate a sideways-printing one-month calendar
353 (@code{cal-tex-cursor-month-landscape}).
354 @item t d
355 Generate a one-day calendar
356 (@code{cal-tex-cursor-day}).
357 @item t w 1
358 Generate a one-page calendar for one week
359 (@code{cal-tex-cursor-week}).
360 @item t w 2
361 Generate a two-page calendar for one week
362 (@code{cal-tex-cursor-week2}).
363 @item t w 3
364 Generate an ISO-style calendar for one week
365 (@code{cal-tex-cursor-week-iso}).
366 @item t w 4
367 Generate a calendar for one Monday-starting week
368 (@code{cal-tex-cursor-week-monday}).
369 @item t f w
370 Generate a Filofax-style two-weeks-at-a-glance calendar
371 (@code{cal-tex-cursor-filofax-2week}).
372 @item t f W
373 Generate a Filofax-style one-week-at-a-glance calendar
374 (@code{cal-tex-cursor-filofax-week}).
375 @item t y
376 Generate a calendar for one year
377 (@code{cal-tex-cursor-year}).
378 @item t Y
379 Generate a sideways-printing calendar for one year
380 (@code{cal-tex-cursor-year-landscape}).
381 @item t f y
382 Generate a Filofax-style calendar for one year
383 (@code{cal-tex-cursor-filofax-year}).
384 @end table
386   Some of these commands print the calendar sideways (in ``landscape
387 mode''), so it can be wider than it is long.  Some of them use Filofax
388 paper size (3.75in x 6.75in).  All of these commands accept a prefix
389 argument which specifies how many days, weeks, months or years to print
390 (starting always with the selected one).
392   If the variable @code{cal-tex-holidays} is non-@code{nil} (the default),
393 then the printed calendars show the holidays in @code{calendar-holidays}.
394 If the variable @code{cal-tex-diary} is non-@code{nil} (the default is
395 @code{nil}), diary entries are included also (in weekly and monthly
396 calendars only).  If the variable @code{cal-tex-rules} is non-@code{nil}
397 (the default is @code{nil}), the calendar displays ruled pages
398 in styles that have sufficient room.
400 @node Holidays
401 @section Holidays
402 @cindex holidays
404   The Emacs calendar knows about all major and many minor holidays,
405 and can display them.
407 @table @kbd
408 @item h
409 Display holidays for the selected date
410 (@code{calendar-cursor-holidays}).
411 @item Mouse-2 Holidays
412 Display any holidays for the date you click on.
413 @item x
414 Mark holidays in the calendar window (@code{mark-calendar-holidays}).
415 @item u
416 Unmark calendar window (@code{calendar-unmark}).
417 @item a
418 List all holidays for the displayed three months in another window
419 (@code{list-calendar-holidays}).
420 @item M-x holidays
421 List all holidays for three months around today's date in another
422 window.
423 @item M-x list-holidays
424 List holidays in another window for a specified range of years.
425 @end table
427 @kindex h @r{(Calendar mode)}
428 @findex calendar-cursor-holidays
429 @vindex view-calendar-holidays-initially
430   To see if any holidays fall on a given date, position point on that
431 date in the calendar window and use the @kbd{h} command.  Alternatively,
432 click on that date with @kbd{Mouse-2} and then choose @kbd{Holidays}
433 from the menu that appears.  Either way, this displays the holidays for
434 that date, in the echo area if they fit there, otherwise in a separate
435 window.  If the variable @code{view-calendar-holidays-initially} is
436 non-@code{nil}, holidays are displayed when the calendar is created.
438 @kindex x @r{(Calendar mode)}
439 @findex mark-calendar-holidays
440 @kindex u @r{(Calendar mode)}
441 @findex calendar-unmark
442 @vindex mark-holidays-in-calendar
443   To view the distribution of holidays for all the dates shown in the
444 calendar, use the @kbd{x} command.  This displays the dates that are
445 holidays in a different face (or places a @samp{*} after these dates, if
446 display with multiple faces is not available).  @inforef{Calendar
447 Customizing, calendar-holiday-marker, emacs-xtra}.  The command applies
448 both to the currently visible months and to other months that
449 subsequently become visible by scrolling.  To turn marking off and erase
450 the current marks, type @kbd{u}, which also erases any diary marks
451 (@pxref{Diary}).  If the variable @code{mark-holidays-in-calendar} is
452 non-@code{nil}, holidays are marked in the calendar when it is created
453 (or recomputed).
456 @kindex a @r{(Calendar mode)}
457 @findex list-calendar-holidays
458   To get even more detailed information, use the @kbd{a} command, which
459 displays a separate buffer containing a list of all holidays in the
460 current three-month range.  You can use @key{SPC} and @key{DEL} in the
461 calendar window to scroll that list up and down, respectively.
463 @findex holidays
464   The command @kbd{M-x holidays} displays the list of holidays for the
465 current month and the preceding and succeeding months; this works even
466 if you don't have a calendar window.  If you want the list of holidays
467 centered around a different month, use @kbd{C-u M-x holidays}, which
468 prompts for the month and year.
470   The holidays known to Emacs include United States holidays and the
471 major Christian, Jewish, and Islamic holidays; also the solstices and
472 equinoxes.
474 @findex list-holidays
475    The command @kbd{M-x list-holidays} displays the list of holidays for
476 a range of years.  This function asks you for the starting and stopping
477 years, and allows you to choose all the holidays or one of several
478 categories of holidays.  You can use this command even if you don't have
479 a calendar window.
481   The dates used by Emacs for holidays are based on @emph{current
482 practice}, not historical fact.  Historically, for instance, the start
483 of daylight savings time and even its existence have varied from year to
484 year, but present United States law mandates that daylight savings time
485 begins on the first Sunday in April.  When the daylight savings rules
486 are set up for the United States, Emacs always uses the present
487 definition, even though it is wrong for some prior years.
489 @node Sunrise/Sunset
490 @section Times of Sunrise and Sunset
491 @cindex sunrise and sunset
493   Special calendar commands can tell you, to within a minute or two, the
494 times of sunrise and sunset for any date.
496 @table @kbd
497 @item S
498 Display times of sunrise and sunset for the selected date
499 (@code{calendar-sunrise-sunset}).
500 @item Mouse-2 Sunrise/sunset
501 Display times of sunrise and sunset for the date you click on.
502 @item M-x sunrise-sunset
503 Display times of sunrise and sunset for today's date.
504 @item C-u M-x sunrise-sunset
505 Display times of sunrise and sunset for a specified date.
506 @end table
508 @kindex S @r{(Calendar mode)}
509 @findex calendar-sunrise-sunset
510 @findex sunrise-sunset
511   Within the calendar, to display the @emph{local times} of sunrise and
512 sunset in the echo area, move point to the date you want, and type
513 @kbd{S}.  Alternatively, click @kbd{Mouse-2} on the date, then choose
514 @samp{Sunrise/sunset} from the menu that appears.  The command @kbd{M-x
515 sunrise-sunset} is available outside the calendar to display this
516 information for today's date or a specified date.  To specify a date
517 other than today, use @kbd{C-u M-x sunrise-sunset}, which prompts for
518 the year, month, and day.
520   You can display the times of sunrise and sunset for any location and
521 any date with @kbd{C-u C-u M-x sunrise-sunset}.  This asks you for a
522 longitude, latitude, number of minutes difference from Coordinated
523 Universal Time, and date, and then tells you the times of sunrise and
524 sunset for that location on that date.
526   Because the times of sunrise and sunset depend on the location on
527 earth, you need to tell Emacs your latitude, longitude, and location
528 name before using these commands.  Here is an example of what to set:
530 @vindex calendar-location-name
531 @vindex calendar-longitude
532 @vindex calendar-latitude
533 @example
534 (setq calendar-latitude 40.1)
535 (setq calendar-longitude -88.2)
536 (setq calendar-location-name "Urbana, IL")
537 @end example
539 @noindent
540 Use one decimal place in the values of @code{calendar-latitude} and
541 @code{calendar-longitude}.
543   Your time zone also affects the local time of sunrise and sunset.
544 Emacs usually gets time zone information from the operating system, but
545 if these values are not what you want (or if the operating system does
546 not supply them), you must set them yourself.  Here is an example:
548 @vindex calendar-time-zone
549 @vindex calendar-standard-time-zone-name
550 @vindex calendar-daylight-time-zone-name
551 @example
552 (setq calendar-time-zone -360)
553 (setq calendar-standard-time-zone-name "CST")
554 (setq calendar-daylight-time-zone-name "CDT")
555 @end example
557 @noindent
558 The value of @code{calendar-time-zone} is the number of minutes
559 difference between your local standard time and Coordinated Universal
560 Time (Greenwich time).  The values of
561 @code{calendar-standard-time-zone-name} and
562 @code{calendar-daylight-time-zone-name} are the abbreviations used in
563 your time zone.  Emacs displays the times of sunrise and sunset
564 @emph{corrected for daylight savings time}.  @xref{Daylight Savings},
565 for how daylight savings time is determined.
567   As a user, you might find it convenient to set the calendar location
568 variables for your usual physical location in your @file{.emacs} file.
569 And when you install Emacs on a machine, you can create a
570 @file{default.el} file which sets them properly for the typical location
571 of most users of that machine.  @xref{Init File}.
573 @node Lunar Phases
574 @section Phases of the Moon
575 @cindex phases of the moon
576 @cindex moon, phases of
578   These calendar commands display the dates and times of the phases of
579 the moon (new moon, first quarter, full moon, last quarter).  This
580 feature is useful for debugging problems that ``depend on the phase of
581 the moon.''
583 @table @kbd
584 @item M
585 Display the dates and times for all the quarters of the moon for the
586 three-month period shown (@code{calendar-phases-of-moon}).
587 @item M-x phases-of-moon
588 Display dates and times of the quarters of the moon for three months around
589 today's date.
590 @end table
592 @kindex M @r{(Calendar mode)}
593 @findex calendar-phases-of-moon
594   Within the calendar, use the @kbd{M} command to display a separate
595 buffer of the phases of the moon for the current three-month range.  The
596 dates and times listed are accurate to within a few minutes.
598 @findex phases-of-moon
599   Outside the calendar, use the command @kbd{M-x phases-of-moon} to
600 display the list of the phases of the moon for the current month and the
601 preceding and succeeding months.  For information about a different
602 month, use @kbd{C-u M-x phases-of-moon}, which prompts for the month and
603 year.
605   The dates and times given for the phases of the moon are given in
606 local time (corrected for daylight savings, when appropriate); but if
607 the variable @code{calendar-time-zone} is void, Coordinated Universal
608 Time (the Greenwich time zone) is used.  @xref{Daylight Savings}.
610 @node Other Calendars
611 @section Conversion To and From Other Calendars
613 @cindex Gregorian calendar
614   The Emacs calendar displayed is @emph{always} the Gregorian calendar,
615 sometimes called the ``new style'' calendar, which is used in most of
616 the world today.  However, this calendar did not exist before the
617 sixteenth century and was not widely used before the eighteenth century;
618 it did not fully displace the Julian calendar and gain universal
619 acceptance until the early twentieth century.  The Emacs calendar can
620 display any month since January, year 1 of the current era, but the
621 calendar displayed is the Gregorian, even for a date at which the
622 Gregorian calendar did not exist.
624   While Emacs cannot display other calendars, it can convert dates to
625 and from several other calendars.
627 @menu
628 * Calendar Systems::       The calendars Emacs understands
629                              (aside from Gregorian).
630 * To Other Calendar::      Converting the selected date to various calendars.
631 * From Other Calendar::    Moving to a date specified in another calendar.
632 * Mayan Calendar::         Moving to a date specified in a Mayan calendar.
633 @end menu
635 @node Calendar Systems
636 @subsection Supported Calendar Systems
638 @cindex ISO commercial calendar
639   The ISO commercial calendar is used largely in Europe.
641 @cindex Julian calendar
642   The Julian calendar, named after Julius Caesar, was the one used in Europe
643 throughout medieval times, and in many countries up until the nineteenth
644 century.
646 @cindex Julian day numbers
647 @cindex astronomical day numbers
648   Astronomers use a simple counting of days elapsed since noon, Monday,
649 January 1, 4713 B.C. on the Julian calendar.  The number of days elapsed
650 is called the @dfn{Julian day number} or the @dfn{Astronomical day number}.
652 @cindex Hebrew calendar
653   The Hebrew calendar is used by tradition in the Jewish religion.  The
654 Emacs calendar program uses the Hebrew calendar to determine the dates
655 of Jewish holidays.  Hebrew calendar dates begin and end at sunset.
657 @cindex Islamic calendar
658   The Islamic calendar is used in many predominantly Islamic countries.
659 Emacs uses it to determine the dates of Islamic holidays.  There is no
660 universal agreement in the Islamic world about the calendar; Emacs uses
661 a widely accepted version, but the precise dates of Islamic holidays
662 often depend on proclamation by religious authorities, not on
663 calculations.  As a consequence, the actual dates of observance can vary
664 slightly from the dates computed by Emacs.  Islamic calendar dates begin
665 and end at sunset.
667 @cindex French Revolutionary calendar
668   The French Revolutionary calendar was created by the Jacobins after the 1789
669 revolution, to represent a more secular and nature-based view of the annual
670 cycle, and to install a 10-day week in a rationalization measure similar to
671 the metric system.  The French government officially abandoned this
672 calendar at the end of 1805.
674 @cindex Mayan calendar
675   The Maya of Central America used three separate, overlapping calendar
676 systems, the @emph{long count}, the @emph{tzolkin}, and the @emph{haab}.
677 Emacs knows about all three of these calendars.  Experts dispute the
678 exact correlation between the Mayan calendar and our calendar; Emacs uses the
679 Goodman-Martinez-Thompson correlation in its calculations.
681 @cindex Coptic calendar
682 @cindex Ethiopic calendar
683   The Copts use a calendar based on the ancient Egyptian solar calendar.
684 Their calendar consists of twelve 30-day months followed by an extra
685 five-day period.  Once every fourth year they add a leap day to this
686 extra period to make it six days.  The Ethiopic calendar is identical in
687 structure, but has different year numbers and month names.
689 @cindex Persian calendar
690   The Persians use a solar calendar based on a design of Omar Khayyam.
691 Their calendar consists of twelve months of which the first six have 31
692 days, the next five have 30 days, and the last has 29 in ordinary years
693 and 30 in leap years.  Leap years occur in a complicated pattern every
694 four or five years.
696 @cindex Chinese calendar
697   The Chinese calendar is a complicated system of lunar months arranged
698 into solar years.  The years go in cycles of sixty, each year containing
699 either twelve months in an ordinary year or thirteen months in a leap
700 year; each month has either 29 or 30 days.  Years, ordinary months, and
701 days are named by combining one of ten ``celestial stems'' with one of
702 twelve ``terrestrial branches'' for a total of sixty names that are
703 repeated in a cycle of sixty.
705 @node To Other Calendar
706 @subsection Converting To Other Calendars
708   The following commands describe the selected date (the date at point)
709 in various other calendar systems:
711 @table @kbd
712 @item Mouse-2  Other calendars
713 Display the date that you click on, expressed in various other calendars.
714 @kindex p @r{(Calendar mode)}
715 @findex calendar-print-iso-date
716 @item p c
717 Display ISO commercial calendar equivalent for selected day
718 (@code{calendar-print-iso-date}).
719 @findex calendar-print-julian-date
720 @item p j
721 Display Julian date for selected day (@code{calendar-print-julian-date}).
722 @findex calendar-print-astro-day-number
723 @item p a
724 Display astronomical (Julian) day number for selected day
725 (@code{calendar-print-astro-day-number}).
726 @findex calendar-print-hebrew-date
727 @item p h
728 Display Hebrew date for selected day (@code{calendar-print-hebrew-date}).
729 @findex calendar-print-islamic-date
730 @item p i
731 Display Islamic date for selected day (@code{calendar-print-islamic-date}).
732 @findex calendar-print-french-date
733 @item p f
734 Display French Revolutionary date for selected day
735 (@code{calendar-print-french-date}).
736 @findex calendar-print-chinese-date
737 @item p C
738 Display Chinese date for selected day
739 (@code{calendar-print-chinese-date}).
740 @findex calendar-print-coptic-date
741 @item p k
742 Display Coptic date for selected day
743 (@code{calendar-print-coptic-date}).
744 @findex calendar-print-ethiopic-date
745 @item p e
746 Display Ethiopic date for selected day
747 (@code{calendar-print-ethiopic-date}).
748 @findex calendar-print-persian-date
749 @item p p
750 Display Persian date for selected day
751 (@code{calendar-print-persian-date}).
752 @findex calendar-print-mayan-date
753 @item p m
754 Display Mayan date for selected day (@code{calendar-print-mayan-date}).
755 @end table
757   If you are using X, the easiest way to translate a date into other
758 calendars is to click on it with @kbd{Mouse-2}, then choose @kbd{Other
759 calendars} from the menu that appears.  This displays the equivalent
760 forms of the date in all the calendars Emacs understands, in the form of
761 a menu.  (Choosing an alternative from this menu doesn't actually do
762 anything---the menu is used only for display.)
764   Otherwise, move point to the date you want to convert, then type the
765 appropriate command starting with @kbd{p} from the table above.  The
766 prefix @kbd{p} is a mnemonic for ``print,'' since Emacs ``prints'' the
767 equivalent date in the echo area.
769 @node From Other Calendar
770 @subsection Converting From Other Calendars
772   You can use the other supported calendars to specify a date to move
773 to.  This section describes the commands for doing this using calendars
774 other than Mayan; for the Mayan calendar, see the following section.
776 @kindex g @var{char} @r{(Calendar mode)}
777 @findex calendar-goto-iso-date
778 @findex calendar-goto-iso-week
779 @findex calendar-goto-julian-date
780 @findex calendar-goto-astro-day-number
781 @findex calendar-goto-hebrew-date
782 @findex calendar-goto-islamic-date
783 @findex calendar-goto-french-date
784 @findex calendar-goto-chinese-date
785 @findex calendar-goto-persian-date
786 @findex calendar-goto-coptic-date
787 @findex calendar-goto-ethiopic-date
788 @table @kbd
789 @item g c
790 Move to a date specified in the ISO commercial calendar
791 (@code{calendar-goto-iso-date}).
792 @item g w
793 Move to a week specified in the ISO commercial calendar
794 (@code{calendar-goto-iso-week}).
795 @item g j
796 Move to a date specified in the Julian calendar
797 (@code{calendar-goto-julian-date}).
798 @item g a
799 Move to a date specified with an astronomical (Julian) day number
800 (@code{calendar-goto-astro-day-number}).
801 @item g h
802 Move to a date specified in the Hebrew calendar
803 (@code{calendar-goto-hebrew-date}).
804 @item g i
805 Move to a date specified in the Islamic calendar
806 (@code{calendar-goto-islamic-date}).
807 @item g f
808 Move to a date specified in the French Revolutionary calendar
809 (@code{calendar-goto-french-date}).
810 @item g C
811 Move to a date specified in the Chinese calendar
812 (@code{calendar-goto-chinese-date}).
813 @item g p
814 Move to a date specified in the Persian calendar
815 (@code{calendar-goto-persian-date}).
816 @item g k
817 Move to a date specified in the Coptic calendar
818 (@code{calendar-goto-coptic-date}).
819 @item g e
820 Move to a date specified in the Ethiopic calendar
821 (@code{calendar-goto-ethiopic-date}).
822 @end table
824   These commands ask you for a date on the other calendar, move point to
825 the Gregorian calendar date equivalent to that date, and display the
826 other calendar's date in the echo area.  Emacs uses strict completion
827 (@pxref{Completion}) whenever it asks you to type a month name, so you
828 don't have to worry about the spelling of Hebrew, Islamic, or French names.
830 @findex list-yahrzeit-dates
831 @cindex yahrzeits
832   One common question concerning the Hebrew calendar is the computation
833 of the anniversary of a date of death, called a ``yahrzeit.''  The Emacs
834 calendar includes a facility for such calculations.  If you are in the
835 calendar, the command @kbd{M-x list-yahrzeit-dates} asks you for a
836 range of years and then displays a list of the yahrzeit dates for those
837 years for the date given by point.  If you are not in the calendar,
838 this command first asks you for the date of death and the range of
839 years, and then displays the list of yahrzeit dates.
841 @node Mayan Calendar
842 @subsection Converting from the Mayan Calendar
844   Here are the commands to select dates based on the Mayan calendar:
846 @table @kbd
847 @item g m l
848 Move to a date specified by the long count calendar
849 (@code{calendar-goto-mayan-long-count-date}).
850 @item g m n t
851 Move to the next occurrence of a place in the
852 tzolkin calendar (@code{calendar-next-tzolkin-date}).
853 @item g m p t
854 Move to the previous occurrence of a place in the
855 tzolkin calendar (@code{calendar-previous-tzolkin-date}).
856 @item g m n h
857 Move to the next occurrence of a place in the
858 haab calendar (@code{calendar-next-haab-date}).
859 @item g m p h
860 Move to the previous occurrence of a place in the
861 haab calendar (@code{calendar-previous-haab-date}).
862 @item g m n c
863 Move to the next occurrence of a place in the
864 calendar round (@code{calendar-next-calendar-round-date}).
865 @item g m p c
866 Move to the previous occurrence of a place in the
867 calendar round (@code{calendar-previous-calendar-round-date}).
868 @end table
870 @cindex Mayan long count
871   To understand these commands, you need to understand the Mayan calendars.
872 The @dfn{long count} is a counting of days with these units:
874 @display
875 1 kin = 1 day@ @ @ 1 uinal = 20 kin@ @ @ 1 tun = 18 uinal
876 1 katun = 20 tun@ @ @ 1 baktun = 20 katun
877 @end display
879 @kindex g m @r{(Calendar mode)}
880 @findex calendar-goto-mayan-long-count-date
881 @noindent
882 Thus, the long count date 12.16.11.16.6 means 12 baktun, 16 katun, 11
883 tun, 16 uinal, and 6 kin.  The Emacs calendar can handle Mayan long
884 count dates as early as 7.17.18.13.3, but no earlier.  When you use the
885 @kbd{g m l} command, type the Mayan long count date with the baktun,
886 katun, tun, uinal, and kin separated by periods.
888 @findex calendar-previous-tzolkin-date
889 @findex calendar-next-tzolkin-date
890 @cindex Mayan tzolkin calendar
891   The Mayan tzolkin calendar is a cycle of 260 days formed by a pair of
892 independent cycles of 13 and 20 days.  Since this cycle repeats
893 endlessly, Emacs provides commands to move backward and forward to the
894 previous or next point in the cycle.  Type @kbd{g m p t} to go to the
895 previous tzolkin date; Emacs asks you for a tzolkin date and moves point
896 to the previous occurrence of that date.  Similarly, type @kbd{g m n t}
897 to go to the next occurrence of a tzolkin date.
899 @findex calendar-previous-haab-date
900 @findex calendar-next-haab-date
901 @cindex Mayan haab calendar
902   The Mayan haab calendar is a cycle of 365 days arranged as 18 months
903 of 20 days each, followed a 5-day monthless period.  Like the tzolkin
904 cycle, this cycle repeats endlessly, and there are commands to move
905 backward and forward to the previous or next point in the cycle.  Type
906 @kbd{g m p h} to go to the previous haab date; Emacs asks you for a haab
907 date and moves point to the previous occurrence of that date.
908 Similarly, type @kbd{g m n h} to go to the next occurrence of a haab
909 date.
911 @c This is omitted because it is too long for smallbook format.
912 @c @findex calendar-previous-calendar-round-date
913 @findex calendar-next-calendar-round-date
914 @cindex Mayan calendar round
915   The Maya also used the combination of the tzolkin date and the haab
916 date.  This combination is a cycle of about 52 years called a
917 @emph{calendar round}.  If you type @kbd{g m p c}, Emacs asks you for
918 both a haab and a tzolkin date and then moves point to the previous
919 occurrence of that combination.  Use @kbd{g m n c} to move point to the
920 next occurrence of a combination.  These commands signal an error if the
921 haab/tzolkin date combination you have typed is impossible.
923   Emacs uses strict completion (@pxref{Strict Completion}) whenever it
924 asks you to type a Mayan name, so you don't have to worry about
925 spelling.
927 @node Diary
928 @section The Diary
929 @cindex diary
931   The Emacs diary keeps track of appointments or other events on a daily
932 basis, in conjunction with the calendar.  To use the diary feature, you
933 must first create a @dfn{diary file} containing a list of events and
934 their dates.  Then Emacs can automatically pick out and display the
935 events for today, for the immediate future, or for any specified
936 date.
938   The name of the diary file is specified by the variable
939 @code{diary-file}; @file{~/diary} is the default.  A sample diary file
942 @example
943 12/22/1988  Twentieth wedding anniversary!!
944 &1/1.       Happy New Year!
945 10/22       Ruth's birthday.
946 * 21, *:    Payday
947 Tuesday--weekly meeting with grad students at 10am
948          Supowit, Shen, Bitner, and Kapoor to attend.
949 1/13/89     Friday the thirteenth!!
950 &thu 4pm    squash game with Lloyd.
951 mar 16      Dad's birthday
952 April 15, 1989 Income tax due.
953 &* 15       time cards due.
954 @end example
956 @noindent
957 This example uses extra spaces to align the event descriptions of most
958 of the entries.  Such formatting is purely a matter of taste.
960   Although you probably will start by creating a diary manually, Emacs
961 provides a number of commands to let you view, add, and change diary
962 entries.
964 @menu
965 * Displaying the Diary::   Viewing diary entries and associated calendar dates.
966 * Format of Diary File::   Entering events in your diary.
967 * Date Formats::           Various ways you can specify dates.
968 * Adding to Diary::        Commands to create diary entries.
969 * Special Diary Entries::  Anniversaries, blocks of dates, cyclic entries, etc.
970 @end menu
972 @node Displaying the Diary
973 @subsection Displaying the Diary
975   Once you have created a diary file, you can use the calendar to view
976 it.  You can also view today's events outside of Calendar mode.
978 @table @kbd
979 @item d
980 Display all diary entries for the selected date
981 (@code{view-diary-entries}).
982 @item Mouse-2 Diary
983 Display all diary entries for the date you click on.
984 @item s
985 Display the entire diary file (@code{show-all-diary-entries}).
986 @item m
987 Mark all visible dates that have diary entries
988 (@code{mark-diary-entries}).
989 @item u
990 Unmark the calendar window (@code{calendar-unmark}).
991 @item M-x print-diary-entries
992 Print hard copy of the diary display as it appears.
993 @item M-x diary
994 Display all diary entries for today's date.
995 @item M-x diary-mail-entries
996 Mail yourself email reminders about upcoming diary entries.
997 @end table
999 @kindex d @r{(Calendar mode)}
1000 @findex view-diary-entries
1001 @vindex view-diary-entries-initially
1002   Displaying the diary entries with @kbd{d} shows in a separate window
1003 the diary entries for the selected date in the calendar.  The mode line
1004 of the new window shows the date of the diary entries and any holidays
1005 that fall on that date.  If you specify a numeric argument with @kbd{d},
1006 it shows all the diary entries for that many successive days.  Thus,
1007 @kbd{2 d} displays all the entries for the selected date and for the
1008 following day.  If the variable @code{view-diary-entries-initially} is
1009 non-@code{nil}, the diary entries for the current date are displayed
1010 when the calendar is created (provided the current date is visible).
1012   Another way to display the diary entries for a date is to click
1013 @kbd{Mouse-2} on the date, and then choose @kbd{Diary entries} from
1014 the menu that appears.
1016 @kindex m @r{(Calendar mode)}
1017 @findex mark-diary-entries
1018 @vindex mark-diary-entries-in-calendar
1019   To get a broader view of which days are mentioned in the diary, use
1020 the @kbd{m} command.  This displays the dates that have diary entries in
1021 a different face (or places a @samp{+} after these dates, if display
1022 with multiple faces is not available).  @inforef{Calendar Customizing,
1023 diary-entry-marker, emacs-xtra}.  The command applies both to the
1024 currently visible months and to other months that subsequently become
1025 visible by scrolling.  To turn marking off and erase the current marks,
1026 type @kbd{u}, which also turns off holiday marks (@pxref{Holidays}).  If
1027 the variable @code{mark-diary-entries-in-calendar} is non-@code{nil},
1028 diary dates are marked in the calendar when it is created (or
1029 recomputed).
1031 @kindex s @r{(Calendar mode)}
1032 @findex show-all-diary-entries
1033   To see the full diary file, rather than just some of the entries, use
1034 the @kbd{s} command.
1036   Display of selected diary entries uses the selective display feature
1037 to hide entries that don't apply.
1039   The diary buffer as you see it is an illusion, so simply printing the
1040 buffer does not print what you see on your screen.  There is a special
1041 command to print hard copy of the diary buffer @emph{as it appears};
1042 this command is @kbd{M-x print-diary-entries}.  It sends the data
1043 directly to the printer.  You can customize it like @code{lpr-region}
1044 (@pxref{Hardcopy}).
1046 @findex diary
1047   The command @kbd{M-x diary} displays the diary entries for the current
1048 date, independently of the calendar display, and optionally for the next
1049 few days as well; the variable @code{number-of-diary-entries} specifies
1050 how many days to include.  @inforef{Diary Customizing,, emacs-xtra}.
1052   If you put @code{(diary)} in your @file{.emacs} file, this
1053 automatically displays a window with the day's diary entries, when you
1054 enter Emacs.  The mode line of the displayed window shows the date and
1055 any holidays that fall on that date.
1057 @findex diary-mail-entries
1058 @vindex diary-mail-days
1059   Many users like to receive notice of events in their diary as email.
1060 To send such mail to yourself, use the command @kbd{M-x
1061 diary-mail-entries}.  A prefix argument specifies how many days
1062 (starting with today) to check; otherwise, the variable
1063 @code{diary-mail-days} says how many days.
1065 @node Format of Diary File
1066 @subsection The Diary File
1067 @cindex diary file
1069 @vindex diary-file
1070   Your @dfn{diary file} is a file that records events associated with
1071 particular dates.  The name of the diary file is specified by the
1072 variable @code{diary-file}; @file{~/diary} is the default.  The
1073 @code{calendar} utility program supports a subset of the format allowed
1074 by the Emacs diary facilities, so you can use that utility to view the
1075 diary file, with reasonable results aside from the entries it cannot
1076 understand.
1078   Each entry in the diary file describes one event and consists of one
1079 or more lines.  An entry always begins with a date specification at the
1080 left margin.  The rest of the entry is simply text to describe the
1081 event.  If the entry has more than one line, then the lines after the
1082 first must begin with whitespace to indicate they continue a previous
1083 entry.  Lines that do not begin with valid dates and do not continue a
1084 preceding entry are ignored.
1086   You can inhibit the marking of certain diary entries in the calendar
1087 window; to do this, insert an ampersand (@samp{&}) at the beginning of
1088 the entry, before the date.  This has no effect on display of the entry
1089 in the diary window; it affects only marks on dates in the calendar
1090 window.  Nonmarking entries are especially useful for generic entries
1091 that would otherwise mark many different dates.
1093   If the first line of a diary entry consists only of the date or day
1094 name with no following blanks or punctuation, then the diary window
1095 display doesn't include that line; only the continuation lines appear.
1096 For example, this entry:
1098 @example
1099 02/11/1989
1100       Bill B. visits Princeton today
1101       2pm Cognitive Studies Committee meeting
1102       2:30-5:30 Liz at Lawrenceville
1103       4:00pm Dentist appt
1104       7:30pm Dinner at George's
1105       8:00-10:00pm concert
1106 @end example
1108 @noindent
1109 appears in the diary window without the date line at the beginning.
1110 This style of entry looks neater when you display just a single day's
1111 entries, but can cause confusion if you ask for more than one day's
1112 entries.
1114   You can edit the diary entries as they appear in the window, but it is
1115 important to remember that the buffer displayed contains the @emph{entire}
1116 diary file, with portions of it concealed from view.  This means, for
1117 instance, that the @kbd{C-f} (@code{forward-char}) command can put point
1118 at what appears to be the end of the line, but what is in reality the
1119 middle of some concealed line.
1121   @emph{Be careful when editing the diary entries!}  Inserting
1122 additional lines or adding/deleting characters in the middle of a
1123 visible line cannot cause problems, but editing at the end of a line may
1124 not do what you expect.  Deleting a line may delete other invisible
1125 entries that follow it.  Before editing the diary, it is best to display
1126 the entire file with @kbd{s} (@code{show-all-diary-entries}).
1128 @node Date Formats
1129 @subsection Date Formats
1131   Here are some sample diary entries, illustrating different ways of
1132 formatting a date.  The examples all show dates in American order
1133 (month, day, year), but Calendar mode supports European order (day,
1134 month, year) as an option.
1136 @example
1137 4/20/93  Switch-over to new tabulation system
1138 apr. 25  Start tabulating annual results
1139 4/30  Results for April are due
1140 */25  Monthly cycle finishes
1141 Friday  Don't leave without backing up files
1142 @end example
1144   The first entry appears only once, on April 20, 1993.  The second and
1145 third appear every year on the specified dates, and the fourth uses a
1146 wildcard (asterisk) for the month, so it appears on the 25th of every
1147 month.  The final entry appears every week on Friday.
1149   You can use just numbers to express a date, as in
1150 @samp{@var{month}/@var{day}} or @samp{@var{month}/@var{day}/@var{year}}.
1151 This must be followed by a nondigit.  In the date itself, @var{month}
1152 and @var{day} are numbers of one or two digits.  The optional @var{year}
1153 is also a number, and may be abbreviated to the last two digits; that
1154 is, you can use @samp{11/12/1989} or @samp{11/12/89}.
1156   Dates can also have the form @samp{@var{monthname} @var{day}} or
1157 @samp{@var{monthname} @var{day}, @var{year}}, where the month's name can
1158 be spelled in full or abbreviated (with or without a period).  The
1159 preferred abbreviations can be controlled using the variables
1160 @code{calendar-abbrev-length}, @code{calendar-month-abbrev-array}, and
1161 @code{calendar-day-abbrev-array}.  The default is to use the first three
1162 letters of a name as its abbreviation.  Case is not significant.
1164   A date may be @dfn{generic}; that is, partially unspecified.  Then the
1165 entry applies to all dates that match the specification.  If the date
1166 does not contain a year, it is generic and applies to any year.
1167 Alternatively, @var{month}, @var{day}, or @var{year} can be a @samp{*};
1168 this matches any month, day, or year, respectively.  Thus, a diary entry
1169 @samp{3/*/*} matches any day in March of any year; so does @samp{march
1172 @vindex european-calendar-style
1173 @findex european-calendar
1174 @findex american-calendar
1175   If you prefer the European style of writing dates---in which the day
1176 comes before the month---type @kbd{M-x european-calendar} while in the
1177 calendar, or set the variable @code{european-calendar-style} to @code{t}
1178 @emph{before} using any calendar or diary command.  This mode interprets
1179 all dates in the diary in the European manner, and also uses European
1180 style for displaying diary dates.  (Note that there is no comma after
1181 the @var{monthname} in the European style.)  To go back to the (default)
1182 American style of writing dates, type @kbd{M-x american-calendar}.
1184   You can use the name of a day of the week as a generic date which
1185 applies to any date falling on that day of the week.  You can abbreviate
1186 the day of the week to three letters (with or without a period) or spell
1187 it in full; case is not significant.
1189 @node Adding to Diary
1190 @subsection Commands to Add to the Diary
1192   While in the calendar, there are several commands to create diary
1193 entries:
1195 @table @kbd
1196 @item i d
1197 Add a diary entry for the selected date (@code{insert-diary-entry}).
1198 @item i w
1199 Add a diary entry for the selected day of the week (@code{insert-weekly-diary-entry}).
1200 @item i m
1201 Add a diary entry for the selected day of the month (@code{insert-monthly-diary-entry}).
1202 @item i y
1203 Add a diary entry for the selected day of the year (@code{insert-yearly-diary-entry}).
1204 @end table
1206 @kindex i d @r{(Calendar mode)}
1207 @findex insert-diary-entry
1208   You can make a diary entry for a specific date by selecting that date
1209 in the calendar window and typing the @kbd{i d} command.  This command
1210 displays the end of your diary file in another window and inserts the
1211 date; you can then type the rest of the diary entry.
1213 @kindex i w @r{(Calendar mode)}
1214 @findex insert-weekly-diary-entry
1215 @kindex i m @r{(Calendar mode)}
1216 @findex insert-monthly-diary-entry
1217 @kindex i y @r{(Calendar mode)}
1218 @findex insert-yearly-diary-entry
1219   If you want to make a diary entry that applies to a specific day of
1220 the week, select that day of the week (any occurrence will do) and type
1221 @kbd{i w}.  This inserts the day-of-week as a generic date; you can then
1222 type the rest of the diary entry.  You can make a monthly diary entry in
1223 the same fashion: select the day of the month, use the @kbd{i m}
1224 command, and type the rest of the entry.  Similarly, you can insert a
1225 yearly diary entry with the @kbd{i y} command.
1227   All of the above commands make marking diary entries by default.  To
1228 make a nonmarking diary entry, give a numeric argument to the command.
1229 For example, @kbd{C-u i w} makes a nonmarking weekly diary entry.
1231   When you modify the diary file, be sure to save the file before
1232 exiting Emacs.  Saving the diary file after using any of the above
1233 insertion commands will automatically update the diary marks in the
1234 calendar window, if appropriate.  You can use the command
1235 @code{redraw-calendar} to force an update at any time.
1237 @node Special Diary Entries
1238 @subsection Special Diary Entries
1240   In addition to entries based on calendar dates, the diary file can
1241 contain @dfn{sexp entries} for regular events such as anniversaries.
1242 These entries are based on Lisp expressions (sexps) that Emacs evaluates
1243 as it scans the diary file.  Instead of a date, a sexp entry contains
1244 @samp{%%} followed by a Lisp expression which must begin and end with
1245 parentheses.  The Lisp expression determines which dates the entry
1246 applies to.
1248   Calendar mode provides commands to insert certain commonly used
1249 sexp entries:
1251 @table @kbd
1252 @item i a
1253 Add an anniversary diary entry for the selected date
1254 (@code{insert-anniversary-diary-entry}).
1255 @item i b
1256 Add a block diary entry for the current region
1257 (@code{insert-block-diary-entry}).
1258 @item i c
1259 Add a cyclic diary entry starting at the date
1260 (@code{insert-cyclic-diary-entry}).
1261 @end table
1263 @kindex i a @r{(Calendar mode)}
1264 @findex insert-anniversary-diary-entry
1265   If you want to make a diary entry that applies to the anniversary of a
1266 specific date, move point to that date and use the @kbd{i a} command.
1267 This displays the end of your diary file in another window and inserts
1268 the anniversary description; you can then type the rest of the diary
1269 entry.  The entry looks like this:
1271 @findex diary-anniversary
1272 @example
1273 %%(diary-anniversary 10 31 1948) Arthur's birthday
1274 @end example
1276 @noindent
1277 This entry applies to October 31 in any year after 1948; @samp{10 31
1278 1948} specifies the date.  (If you are using the European calendar
1279 style, the month and day are interchanged.)  The reason this expression
1280 requires a beginning year is that advanced diary functions can use it to
1281 calculate the number of elapsed years.
1283   A @dfn{block} diary entry applies to a specified range of consecutive
1284 dates.  Here is a block diary entry that applies to all dates from June
1285 24, 1990 through July 10, 1990:
1287 @findex diary-block
1288 @example
1289 %%(diary-block 6 24 1990 7 10 1990) Vacation
1290 @end example
1292 @noindent
1293 The @samp{6 24 1990} indicates the starting date and the @samp{7 10 1990}
1294 indicates the stopping date.  (Again, if you are using the European calendar
1295 style, the month and day are interchanged.)
1297 @kindex i b @r{(Calendar mode)}
1298 @findex insert-block-diary-entry
1299   To insert a block entry, place point and the mark on the two
1300 dates that begin and end the range, and type @kbd{i b}.  This command
1301 displays the end of your diary file in another window and inserts the
1302 block description; you can then type the diary entry.
1304 @kindex i c @r{(Calendar mode)}
1305 @findex insert-cyclic-diary-entry
1306    @dfn{Cyclic} diary entries repeat after a fixed interval of days.  To
1307 create one, select the starting date and use the @kbd{i c} command.  The
1308 command prompts for the length of interval, then inserts the entry,
1309 which looks like this:
1311 @findex diary-cyclic
1312 @example
1313 %%(diary-cyclic 50 3 1 1990) Renew medication
1314 @end example
1316 @noindent
1317 This entry applies to March 1, 1990 and every 50th day following;
1318 @samp{3 1 1990} specifies the starting date.  (If you are using the
1319 European calendar style, the month and day are interchanged.)
1321   All three of these commands make marking diary entries.  To insert a
1322 nonmarking entry, give a numeric argument to the command.  For example,
1323 @kbd{C-u i a} makes a nonmarking anniversary diary entry.
1325   Marking sexp diary entries in the calendar is @emph{extremely}
1326 time-consuming, since every date visible in the calendar window must be
1327 individually checked.  So it's a good idea to make sexp diary entries
1328 nonmarking (with @samp{&}) when possible.
1330   Another sophisticated kind of sexp entry, a @dfn{floating} diary entry,
1331 specifies a regularly occurring event by offsets specified in days,
1332 weeks, and months.  It is comparable to a crontab entry interpreted by
1333 the @code{cron} utility.  Here is a nonmarking, floating diary entry
1334 that applies to the last Thursday in November:
1336 @findex diary-float
1337 @example
1338 &%%(diary-float 11 4 -1) American Thanksgiving
1339 @end example
1341 @noindent
1342 The 11 specifies November (the eleventh month), the 4 specifies Thursday
1343 (the fourth day of the week, where Sunday is numbered zero), and the
1344 @minus{}1 specifies ``last'' (1 would mean ``first,'' 2 would mean
1345 ``second,'' @minus{}2 would mean ``second-to-last,'' and so on).  The
1346 month can be a single month or a list of months.  Thus you could change
1347 the 11 above to @samp{'(1 2 3)} and have the entry apply to the last
1348 Thursday of January, February, and March.  If the month is @code{t}, the
1349 entry applies to all months of the year.@refill
1351   Each of the standard sexp diary entries takes an optional parameter
1352 specifying the name of a face or a single-character string to use when
1353 marking the entry in the calendar.  Most generally, sexp diary entries
1354 can perform arbitrary computations to determine when they apply.
1355 @inforef{Sexp Diary Entries,, emacs-xtra}.
1357 @node Appointments
1358 @section Appointments
1359 @cindex appointment notification
1361 @vindex appt-display-format
1362 @vindex appt-audible
1363 @vindex appt-display-mode-line
1364   If you have a diary entry for an appointment, and that diary entry
1365 begins with a recognizable time of day, Emacs can warn you several
1366 minutes beforehand that that appointment is pending.  Emacs alerts you
1367 to the appointment by displaying a message in your chosen format, as
1368 specified by the variable @code{appt-display-format}.  If the value of
1369 @code{appt-audible} is non-@code{nil}, an audible reminder is also
1370 given.  In addition, if @code{appt-display-mode-line} is non-@code{nil},
1371 Emacs displays the number of minutes to the appointment on the mode
1372 line.
1374 @vindex appt-display-duration
1375 @vindex appt-disp-window-function
1376 @vindex appt-delete-window-function
1377   If @code{appt-display-format} has the value @code{window}, then the
1378 variable @code{appt-display-duration} controls how long the reminder
1379 window is visible for; and the variables
1380 @code{appt-disp-window-function} and @code{appt-delete-window-function}
1381 give the names of functions used to create and destroy the window,
1382 respectively.
1384 @findex appt-activate
1385   To enable appointment notification, call the function
1386 @code{appt-activate} with a positive argument.  This sets up an
1387 appointment list for today from the diary file, giving all diary entries
1388 found with recognizable times of day, and reminds you just before each
1389 of them. Calling @code{appt-activate} with a negative argument disables
1390 the appointment package.  With no argument, it toggles.
1392   For example, suppose the diary file contains these lines:
1394 @example
1395 Monday
1396   9:30am Coffee break
1397  12:00pm Lunch
1398 @end example
1400 @vindex appt-message-warning-time
1401 @noindent
1402 Then on Mondays, you will be reminded at around 9:20am about your coffee
1403 break and at around 11:50am about lunch.  How many minutes in advance you
1404 are first warned is determined by the value of
1405 @code{appt-message-warning-time}.
1407   You can write times in am/pm style (with @samp{12:00am} standing
1408 for midnight and @samp{12:00pm} standing for noon), or 24-hour
1409 European/military style.  You need not be consistent; your diary file
1410 can have a mixture of the two styles.  Times must be at the beginning
1411 of lines if they are to be recognized.
1413 @vindex appt-display-diary
1414   Emacs updates the appointments list from the diary file automatically
1415 just after midnight.  An update can be forced at any time by
1416 re-activating the appointment package.  Both these actions also display
1417 the day's diary buffer, unless you set @code{appt-display-diary} to
1418 @code{nil}.  The appointments list is also updated whenever the
1419 diary file is saved.
1421 @findex appt-add
1422 @findex appt-delete
1423 @cindex alarm clock
1424   You can also use the appointment notification facility like an alarm
1425 clock.  The command @kbd{M-x appt-add} adds entries to the appointment
1426 list without affecting your diary file.  You delete entries from the
1427 appointment list with @kbd{M-x appt-delete}.
1429 @node Importing Diary
1430 @section Importing and Exporting Diary Entries
1432   You can transfer diary entries between Emacs diary files and a
1433 variety of other formats.
1435 @vindex diary-outlook-formats
1436   You can import diary entries from Outlook-generated appointment
1437 messages.  While viewing such a message in Rmail or Gnus, do @kbd{M-x
1438 diary-from-outlook} to import the entry.  You can make this command
1439 recognize additional appointment message formats by customizing the
1440 variable @code{diary-outlook-formats}.
1442 @cindex iCalendar support
1443   The icalendar package allows you to transfer data between your Emacs
1444 diary file and iCalendar files, which are defined in ``RFC
1445 2445---Internet Calendaring and Scheduling Core Object Specification
1446 (iCalendar)'' (as well as the earlier vCalendar format).
1448   Importing works for ``ordinary'' (i.e. non-recurring) events, but (at
1449 present) may not work correctly (if at all) for recurring events.
1450 Exporting of diary files into iCalendar files should work correctly for
1451 most diary entries.  Please note that @file{icalendar.el} is work in
1452 progress, so usage may evolve in future.
1454 @findex icalendar-import-buffer
1455   The command @code{icalendar-import-buffer} extracts
1456 iCalendar data from the current buffer and adds it to your (default)
1457 diary file.  This function is also suitable for automatic extraction of
1458 iCalendar data; for example with the Rmail mail client one could use:
1460 @example
1461 (add-hook 'rmail-show-message-hook 'icalendar-import-buffer)
1462 @end example
1464 @findex icalendar-import-file
1465   The command @code{icalendar-import-file} imports an iCalendar file
1466 and adds the results to an Emacs diary file.  For example:
1468 @example
1469 (icalendar-import-file "/here/is/calendar.ics" "/there/goes/ical-diary")
1470 @end example
1472 @noindent
1473 You can use an @code{#include} directive to add the import file contents
1474 to the main diary file, if these are distinct.  @inforef{Fancy Diary
1475 Display,, emacs-xtra}.
1477 @findex icalendar-export-file, icalendar-export-region
1478   Use @code{icalendar-export-file} to interactively export an entire
1479 Emacs diary file to iCalendar format.  To export only a part of a diary
1480 file, mark the relevant area, and call @code{icalendar-export-region}.
1481 In both cases the result is appended to the target file.
1484 @node Daylight Savings
1485 @section Daylight Savings Time
1486 @cindex daylight savings time
1488   Emacs understands the difference between standard time and daylight
1489 savings time---the times given for sunrise, sunset, solstices,
1490 equinoxes, and the phases of the moon take that into account.  The rules
1491 for daylight savings time vary from place to place and have also varied
1492 historically from year to year.  To do the job properly, Emacs needs to
1493 know which rules to use.
1495 @vindex calendar-daylight-savings-starts
1496 @vindex calendar-daylight-savings-ends
1497   Some operating systems keep track of the rules that apply to the place
1498 where you are; on these systems, Emacs gets the information it needs
1499 from the system automatically.  If some or all of this information is
1500 missing, Emacs fills in the gaps with the rules currently used in
1501 Cambridge, Massachusetts.  If the resulting rules are not what you want,
1502 you can tell Emacs the rules to use by setting certain variables:
1503 @code{calendar-daylight-savings-starts} and
1504 @code{calendar-daylight-savings-ends}.
1506   These values should be Lisp expressions that refer to the variable
1507 @code{year}, and evaluate to the Gregorian date on which daylight
1508 savings time starts or (respectively) ends, in the form of a list
1509 @code{(@var{month} @var{day} @var{year})}.  The values should be
1510 @code{nil} if your area does not use daylight savings time.
1512   Emacs uses these expressions to determine the starting date of
1513 daylight savings time for the holiday list and for correcting times of
1514 day in the solar and lunar calculations.
1516   The values for Cambridge, Massachusetts are as follows:
1518 @example
1519 (calendar-nth-named-day 1 0 4 year)
1520 (calendar-nth-named-day -1 0 10 year)
1521 @end example
1523 @noindent
1524 That is, the first 0th day (Sunday) of the fourth month (April) in
1525 the year specified by @code{year}, and the last Sunday of the tenth month
1526 (October) of that year.  If daylight savings time were
1527 changed to start on October 1, you would set
1528 @code{calendar-daylight-savings-starts} to this:
1530 @example
1531 (list 10 1 year)
1532 @end example
1534   If there is no daylight savings time at your location, or if you want
1535 all times in standard time, set @code{calendar-daylight-savings-starts}
1536 and @code{calendar-daylight-savings-ends} to @code{nil}.
1538 @vindex calendar-daylight-time-offset
1539   The variable @code{calendar-daylight-time-offset} specifies the
1540 difference between daylight savings time and standard time, measured in
1541 minutes.  The value for Cambridge, Massachusetts is 60.
1543 @c @vindex calendar-daylight-savings-starts-time  too long!
1544 @vindex calendar-daylight-savings-ends-time
1545   The two variables @code{calendar-daylight-savings-starts-time} and
1546 @code{calendar-daylight-savings-ends-time} specify the number of minutes
1547 after midnight local time when the transition to and from daylight
1548 savings time should occur.  For Cambridge, Massachusetts both variables'
1549 values are 120.
1551 @node Time Intervals
1552 @section Summing Time Intervals
1553 @cindex time intervals, summing
1554 @cindex summing time intervals
1555 @cindex timeclock
1557   The timeclock feature adds up time intervals, so you can (for
1558 instance) keep track of how much time you spend working.
1560 @findex timeclock-in
1561 @findex timeclock-out
1562 @findex timeclock-change
1563 @findex timeclock-workday-remaining
1564 @findex timeclock-when-to-leave
1565   Use the @kbd{M-x timeclock-in} command when you start working on a
1566 project, and @kbd{M-x timeclock-out} command when you're done.  Each
1567 time you do this, it adds one time interval to the record of the
1568 project.  You can change to working on a different project with @kbd{M-x
1569 timeclock-change}.
1571   Once you've collected data from a number of time intervals, you can use
1572 @kbd{M-x timeclock-workday-remaining} to see how much time is left to
1573 work today (assuming a typical average of 8 hours a day), and @kbd{M-x
1574 timeclock-when-to-leave} which will calculate when you're ``done.''
1576 @vindex timeclock-modeline-display
1577 @findex timeclock-modeline-display
1578   If you want Emacs to display the amount of time ``left'' of your
1579 workday in the mode line, either customize the
1580 @code{timeclock-modeline-display} variable and set its value to
1581 @code{t}, or invoke the @kbd{M-x timeclock-modeline-display} command.
1583 @vindex timeclock-ask-before-exiting
1584   Terminating the current Emacs session might or might not mean that you
1585 have stopped working on the project and, by default, Emacs queries this.
1586 You can, however, set the value of the variable
1587 @code{timeclock-ask-before-exiting} to @code{nil} (via @kbd{M-x
1588 customize}) to avoid this behaviour; then, only an explicit @kbd{M-x
1589 timeclock-out} or @kbd{M-x timeclock-change} will tell Emacs that the
1590 current interval is over.
1592 @cindex @file{.timelog} file
1593 @vindex timeclock-file
1594 @findex timeclock-reread-log
1595   The timeclock functions work by accumulating the data in a file
1596 called @file{.timelog} in your home directory.  You can specify a
1597 different name for this file by customizing the variable
1598 @code{timeclock-file}.  If you edit the timeclock file manually, or if
1599 you change the value of any of timeclock's customizable variables, you
1600 should run the command @kbd{M-x timeclock-reread-log} to update the
1601 data in Emacs from the file.
1603 @ignore
1604    arch-tag: 4531ef09-9df3-449d-9c52-2b5a4a337f92
1605 @end ignore