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