annotate lisp/calendar/auto-autoloads.el @ 200:f0deb0c0e6be

Added tag r20-3b26 for changeset 169c0442b401
author cvs
date Mon, 13 Aug 2007 10:00:35 +0200
parents e121b013d1f0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
1 ;;; DO NOT MODIFY THIS FILE
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 163
diff changeset
2 (if (featurep 'calendar-autoloads) (error "Already loaded"))
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
3
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
4 ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
5
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
6 (put 'calendar-daylight-savings-starts 'risky-local-variable t)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
7
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
8 (put 'calendar-daylight-savings-ends 'risky-local-variable t)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
9
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
10 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
11
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
12 ;;;### (autoloads nil "cal-x" "calendar/cal-x.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
13
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
14 (defvar calendar-setup 'one-frame "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
15 The frame set up of the calendar.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
16 The choices are `one-frame' (calendar and diary together in one separate,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
17 dediciated frame) or `two-frames' (calendar and diary in separate, dedicated
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
18 frames); with any other value the current frame is used.")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
19
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
20 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
21
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
22 ;;;### (autoloads (list-yahrzeit-dates calendar) "calendar" "calendar/calendar.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
23
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
24 (defcustom calendar-week-start-day 0 "*The day of the week on which a week in the calendar begins.\n0 means Sunday (default), 1 means Monday, and so on." :type 'integer :group 'calendar)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
25
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
26 (defcustom calendar-offset 0 "*The offset of the principal month from the center of the calendar window.\n0 means the principal month is in the center (default), -1 means on the left,\n+1 means on the right. Larger (or smaller) values push the principal month off\nthe screen." :type 'integer :group 'calendar)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
27
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
28 (defcustom view-diary-entries-initially nil "*Non-nil means display current date's diary entries on entry.\nThe diary is displayed in another window when the calendar is first displayed,\nif the current date is visible. The number of days of diary entries displayed\nis governed by the variable `number-of-diary-entries'." :type 'boolean :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
29
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
30 (defcustom number-of-diary-entries 1 "*Specifies how many days of diary entries are to be displayed initially.\nThis variable affects the diary display when the command M-x diary is used,\nor if the value of the variable `view-diary-entries-initially' is t. For\nexample, if the default value 1 is used, then only the current day's diary\nentries will be displayed. If the value 2 is used, then both the current\nday's and the next day's entries will be displayed.\n\nThe value can also be a vector such as [0 2 2 2 2 4 1]; this value\nsays to display no diary entries on Sunday, the display the entries\nfor the current date and the day after on Monday through Thursday,\ndisplay Friday through Monday's entries on Friday, and display only\nSaturday's entries on Saturday.\n\nThis variable does not affect the diary display with the `d' command\nfrom the calendar; in that case, the prefix argument controls the\nnumber of days of diary entries displayed." :type 'integer :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
31
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
32 (defcustom mark-diary-entries-in-calendar nil "*Non-nil means mark dates with diary entries, in the calendar window.\nThe marking symbol is specified by the variable `diary-entry-marker'." :type 'boolean :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
33
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
34 (defcustom view-calendar-holidays-initially nil "*Non-nil means display holidays for current three month period on entry.\nThe holidays are displayed in another window when the calendar is first\ndisplayed." :type 'boolean :group 'holidays)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
35
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
36 (defcustom mark-holidays-in-calendar nil "*Non-nil means mark dates of holidays in the calendar window.\nThe marking symbol is specified by the variable `calendar-holiday-marker'." :type 'boolean :group 'holidays)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
37
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
38 (defcustom all-hebrew-calendar-holidays nil "*If nil, show only major holidays from the Hebrew calendar.\nThis means only those Jewish holidays that appear on secular calendars.\n\nIf t, show all the holidays that would appear in a complete Hebrew calendar." :type 'boolean :group 'holidays)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
39
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
40 (defcustom all-christian-calendar-holidays nil "*If nil, show only major holidays from the Christian calendar.\nThis means only those Christian holidays that appear on secular calendars.\n\nIf t, show all the holidays that would appear in a complete Christian\ncalendar." :type 'boolean :group 'holidays)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
41
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
42 (defcustom all-islamic-calendar-holidays nil "*If nil, show only major holidays from the Islamic calendar.\nThis means only those Islamic holidays that appear on secular calendars.\n\nIf t, show all the holidays that would appear in a complete Islamic\ncalendar." :type 'boolean :group 'holidays)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
43
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
44 (defcustom calendar-load-hook nil "*List of functions to be called after the calendar is first loaded.\nThis is the place to add key bindings to `calendar-mode-map'." :type 'hook :group 'calendar)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
45
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
46 (defcustom initial-calendar-window-hook nil "*List of functions to be called when the calendar window is first opened.\nThe functions invoked are called after the calendar window is opened, but\nonce opened is never called again. Leaving the calendar with the `q' command\nand reentering it will cause these functions to be called again." :type 'hook :group 'calendar)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
47
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
48 (defcustom today-visible-calendar-hook nil "*List of functions called whenever the current date is visible.\nThis can be used, for example, to replace today's date with asterisks; a\nfunction `calendar-star-date' is included for this purpose:\n (setq today-visible-calendar-hook 'calendar-star-date)\nIt can also be used to mark the current date with `calendar-today-marker';\na function is also provided for this:\n (setq today-visible-calendar-hook 'calendar-mark-today)\n\nThe corresponding variable `today-invisible-calendar-hook' is the list of\nfunctions called when the calendar function was called when the current\ndate is not visible in the window.\n\nOther than the use of the provided functions, the changing of any\ncharacters in the calendar buffer by the hooks may cause the failure of the\nfunctions that move by days and weeks." :type 'hook :group 'calendar)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
49
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
50 (defcustom today-invisible-calendar-hook nil "*List of functions called whenever the current date is not visible.\n\nThe corresponding variable `today-visible-calendar-hook' is the list of\nfunctions called when the calendar function was called when the current\ndate is visible in the window.\n\nOther than the use of the provided functions, the changing of any\ncharacters in the calendar buffer by the hooks may cause the failure of the\nfunctions that move by days and weeks." :type 'hook :group 'calendar)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
51
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
52 (defcustom diary-file "~/diary" "*Name of the file in which one's personal diary of dates is kept.\n\nThe file's entries are lines in any of the forms\n\n MONTH/DAY\n MONTH/DAY/YEAR\n MONTHNAME DAY\n MONTHNAME DAY, YEAR\n DAYNAME\n\nat the beginning of the line; the remainder of the line is the diary entry\nstring for that date. MONTH and DAY are one or two digit numbers, YEAR is\na number and may be written in full or abbreviated to the final two digits.\nIf the date does not contain a year, it is generic and applies to any year.\nDAYNAME entries apply to any date on which is on that day of the week.\nMONTHNAME and DAYNAME can be spelled in full, abbreviated to three\ncharacters (with or without a period), capitalized or not. Any of DAY,\nMONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year,\nrespectively.\n\nThe European style (in which the day precedes the month) can be used\ninstead, if you execute `european-calendar' when in the calendar, or set\n`european-calendar-style' to t in your .emacs file. The European forms are\n\n DAY/MONTH\n DAY/MONTH/YEAR\n DAY MONTHNAME\n DAY MONTHNAME YEAR\n DAYNAME\n\nTo revert to the default American style from the European style, execute\n`american-calendar' in the calendar.\n\nA diary entry can be preceded by the character\n`diary-nonmarking-symbol' (ordinarily `&') to make that entry\nnonmarking--that is, it will not be marked on dates in the calendar\nwindow but will appear in a diary window.\n\nMultiline diary entries are made by indenting lines after the first with\neither a TAB or one or more spaces.\n\nLines not in one the above formats are ignored. Here are some sample diary\nentries (in the default American style):\n\n 12/22/1988 Twentieth wedding anniversary!!\n &1/1. Happy New Year!\n 10/22 Ruth's birthday.\n 21: Payday\n Tuesday--weekly meeting with grad students at 10am\n Supowit, Shen, Bitner, and Kapoor to attend.\n 1/13/89 Friday the thirteenth!!\n &thu 4pm squash game with Lloyd.\n mar 16 Dad's birthday\n April 15, 1989 Income tax due.\n &* 15 time cards due.\n\nIf the first line of a diary entry consists only of the date or day name with\nno trailing blanks or punctuation, then that line is not displayed in the\ndiary window; only the continuation lines is shown. For example, the\nsingle diary entry\n\n 02/11/1989\n Bill Blattner visits Princeton today\n 2pm Cognitive Studies Committee meeting\n 2:30-5:30 Lizzie at Lawrenceville for `Group Initiative'\n 4:00pm Jamie Tappenden\n 7:30pm Dinner at George and Ed's for Alan Ryan\n 7:30-10:00pm dance at Stewart Country Day School\n\nwill appear in the diary window without the date line at the beginning. This\nfacility allows the diary window to look neater, but can cause confusion if\nused with more than one day's entries displayed.\n\nDiary entries can be based on Lisp sexps. For example, the diary entry\n\n %%(diary-block 11 1 1990 11 10 1990) Vacation\n\ncauses the diary entry \"Vacation\" to appear from November 1 through November\n10, 1990. Other functions available are `diary-float', `diary-anniversary',\n`diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date',\n`diary-hebrew-date', `diary-islamic-date', `diary-mayan-date',\n`diary-yahrzeit', `diary-sunrise-sunset', `diary-phases-of-moon',\n`diary-parasha', `diary-omer', `diary-rosh-hodesh', and\n`diary-sabbath-candles'. See the documentation for the function\n`list-sexp-diary-entries' for more details.\n\nDiary entries based on the Hebrew and/or the Islamic calendar are also\npossible, but because these are somewhat slow, they are ignored\nunless you set the `nongregorian-diary-listing-hook' and the\n`nongregorian-diary-marking-hook' appropriately. See the documentation\nfor these functions for details.\n\nDiary files can contain directives to include the contents of other files; for\ndetails, see the documentation for the variable `list-diary-entries-hook'." :type 'file :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
53
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
54 (defcustom diary-nonmarking-symbol "&" "*Symbol indicating that a diary entry is not to be marked in the calendar." :type 'string :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
55
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
56 (defcustom hebrew-diary-entry-symbol "H" "*Symbol indicating a diary entry according to the Hebrew calendar." :type 'string :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
57
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
58 (defcustom islamic-diary-entry-symbol "I" "*Symbol indicating a diary entry according to the Islamic calendar." :type 'string :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
59
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
60 (defcustom diary-include-string "#include" "*The string indicating inclusion of another file of diary entries.\nSee the documentation for the function `include-other-diary-files'." :type 'string :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
61
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
62 (defcustom sexp-diary-entry-symbol "%%" "*The string used to indicate a sexp diary entry in diary-file.\nSee the documentation for the function `list-sexp-diary-entries'." :type 'string :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
63
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
64 (defcustom abbreviated-calendar-year t "*Interpret a two-digit year DD in a diary entry as either 19DD or 20DD.\nFor the Gregorian calendar; similarly for the Hebrew and Islamic calendars.\nIf this variable is nil, years must be written in full." :type 'boolean :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
65
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
66 (defcustom european-calendar-style nil "*Use the European style of dates in the diary and in any displays.\nIf this variable is t, a date 1/2/1990 would be interpreted as February 1,\n1990. The accepted European date styles are\n\n DAY/MONTH\n DAY/MONTH/YEAR\n DAY MONTHNAME\n DAY MONTHNAME YEAR\n DAYNAME\n\nNames can be capitalized or not, written in full, or abbreviated to three\ncharacters with or without a period." :type 'boolean :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
67
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
68 (defcustom american-date-diary-pattern '((month "/" day "[^/0-9]") (month "/" day "/" year "[^0-9]") (monthname " *" day "[^,0-9]") (monthname " *" day ", *" year "[^0-9]") (dayname "\\W")) "*List of pseudo-patterns describing the American patterns of date used.\nSee the documentation of `diary-date-forms' for an explanation." :type '(repeat (choice (cons :tag "Backup" (const backup) (repeat (list :inline t :format "%v" (symbol :tag "Keyword") (choice symbol regexp)))) (repeat (list :inline t :format "%v" (symbol :tag "Keyword") (choice symbol regexp))))) :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
69
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
70 (defcustom european-date-diary-pattern '((day "/" month "[^/0-9]") (day "/" month "/" year "[^0-9]") (backup day " *" monthname "\\W+\\<[^*0-9]") (day " *" monthname " *" year "[^0-9]") (dayname "\\W")) "*List of pseudo-patterns describing the European patterns of date used.\nSee the documentation of `diary-date-forms' for an explanation." :type '(repeat (choice (cons :tag "Backup" (const backup) (repeat (list :inline t :format "%v" (symbol :tag "Keyword") (choice symbol regexp)))) (repeat (list :inline t :format "%v" (symbol :tag "Keyword") (choice symbol regexp))))) :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
71
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
72 (defcustom european-calendar-display-form '((if dayname (concat dayname ", ")) day " " monthname " " year) "*Pseudo-pattern governing the way a date appears in the European style.\nSee the documentation of calendar-date-display-form for an explanation." :type 'sexp :group 'calendar)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
73
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
74 (defcustom american-calendar-display-form '((if dayname (concat dayname ", ")) monthname " " day ", " year) "*Pseudo-pattern governing the way a date appears in the American style.\nSee the documentation of `calendar-date-display-form' for an explanation." :type 'sexp :group 'calendar)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
75
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
76 (defcustom print-diary-entries-hook 'lpr-buffer "*List of functions called after a temporary diary buffer is prepared.\nThe buffer shows only the diary entries currently visible in the diary\nbuffer. The default just does the printing. Other uses might include, for\nexample, rearranging the lines into order by day and time, saving the buffer\ninstead of deleting it, or changing the function used to do the printing." :type 'hook :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
77
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
78 (defcustom list-diary-entries-hook nil "*List of functions called after diary file is culled for relevant entries.\nIt is to be used for diary entries that are not found in the diary file.\n\nA function `include-other-diary-files' is provided for use as the value of\nthis hook. This function enables you to use shared diary files together\nwith your own. The files included are specified in the diary file by lines\nof the form\n\n #include \"filename\"\n\nThis is recursive; that is, #include directives in files thus included are\nobeyed. You can change the \"#include\" to some other string by changing\nthe variable `diary-include-string'. When you use `include-other-diary-files'\nas part of the list-diary-entries-hook, you will probably also want to use the\nfunction `mark-included-diary-files' as part of `mark-diary-entries-hook'.\n\nFor example, you could use\n\n (setq list-diary-entries-hook\n '(include-other-diary-files sort-diary-entries))\n (setq diary-display-hook 'fancy-diary-display)\n\nin your `.emacs' file to cause the fancy diary buffer to be displayed with\ndiary entries from various included files, each day's entries sorted into\nlexicographic order." :type 'hook :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
79
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
80 (defcustom diary-hook nil "*List of functions called after the display of the diary.\nCan be used for appointment notification." :type 'hook :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
81
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
82 (defcustom diary-display-hook nil "*List of functions that handle the display of the diary.\nIf nil (the default), `simple-diary-display' is used. Use `ignore' for no\ndiary display.\n\nOrdinarily, this just displays the diary buffer (with holidays indicated in\nthe mode line), if there are any relevant entries. At the time these\nfunctions are called, the variable `diary-entries-list' is a list, in order\nby date, of all relevant diary entries in the form of ((MONTH DAY YEAR)\nSTRING), where string is the diary entry for the given date. This can be\nused, for example, a different buffer for display (perhaps combined with\nholidays), or produce hard copy output.\n\nA function `fancy-diary-display' is provided as an alternative\nchoice for this hook; this function prepares a special noneditable diary\nbuffer with the relevant diary entries that has neat day-by-day arrangement\nwith headings. The fancy diary buffer will show the holidays unless the\nvariable `holidays-in-diary-buffer' is set to nil. Ordinarily, the fancy\ndiary buffer will not show days for which there are no diary entries, even\nif that day is a holiday; if you want such days to be shown in the fancy\ndiary buffer, set the variable `diary-list-include-blanks' to t." :type 'hook :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
83
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
84 (defcustom nongregorian-diary-listing-hook nil "*List of functions called for listing diary file and included files.\nAs the files are processed for diary entries, these functions are used to cull\nrelevant entries. You can use either or both of `list-hebrew-diary-entries'\nand `list-islamic-diary-entries'. The documentation for these functions\ndescribes the style of such diary entries." :type 'hook :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
85
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
86 (defcustom mark-diary-entries-hook nil "*List of functions called after marking diary entries in the calendar.\n\nA function `mark-included-diary-files' is also provided for use as the\nmark-diary-entries-hook; it enables you to use shared diary files together\nwith your own. The files included are specified in the diary file by lines\nof the form\n #include \"filename\"\nThis is recursive; that is, #include directives in files thus included are\nobeyed. You can change the \"#include\" to some other string by changing the\nvariable `diary-include-string'. When you use `mark-included-diary-files' as\npart of the mark-diary-entries-hook, you will probably also want to use the\nfunction `include-other-diary-files' as part of `list-diary-entries-hook'." :type 'hook :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
87
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
88 (defcustom nongregorian-diary-marking-hook nil "*List of functions called for marking diary file and included files.\nAs the files are processed for diary entries, these functions are used to cull\nrelevant entries. You can use either or both of `mark-hebrew-diary-entries'\nand `mark-islamic-diary-entries'. The documentation for these functions\ndescribes the style of such diary entries." :type 'hook :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
89
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
90 (defcustom diary-list-include-blanks nil "*If nil, do not include days with no diary entry in the list of diary entries.\nSuch days will then not be shown in the fancy diary buffer, even if they\nare holidays." :type 'boolean :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
91
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
92 (defcustom holidays-in-diary-buffer t "*Non-nil means include holidays in the diary display.\nThe holidays appear in the mode line of the diary buffer, or in the\nfancy diary buffer next to the date. This slows down the diary functions\nsomewhat; setting it to nil makes the diary display faster." :type 'boolean :group 'diary)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
93
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
94 (defcustom general-holidays '((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Ground Hog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fool's Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving")) "*General holidays. Default value is for the United States.\nSee the documentation for `calendar-holidays' for details." :type 'sexp :group 'holidays)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
95
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
96 (put 'general-holidays 'risky-local-variable t)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
97
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
98 (defcustom local-holidays nil "*Local holidays.\nSee the documentation for `calendar-holidays' for details." :type 'sexp :group 'holidays :group 'local)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
99
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
100 (put 'local-holidays 'risky-local-variable t)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
101
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
102 (defcustom other-holidays nil "*User defined holidays.\nSee the documentation for `calendar-holidays' for details." :type 'sexp :group 'holidays)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
103
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
104 (put 'other-holidays 'risky-local-variable t)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
105
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
106 (defvar hebrew-holidays-1 '((holiday-rosh-hashanah-etc) (if all-hebrew-calendar-holidays (holiday-julian 11 (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (if (zerop (% (1+ year) 4)) 22 21))) "\"Tal Umatar\" (evening)"))))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
107
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
108 (put 'hebrew-holidays-1 'risky-local-variable t)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
109
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
110 (defvar hebrew-holidays-2 '((if all-hebrew-calendar-holidays (holiday-hanukkah) (holiday-hebrew 9 25 "Hanukkah")) (if all-hebrew-calendar-holidays (holiday-hebrew 10 (let ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list displayed-month 28 displayed-year)))))) (if (= (% (calendar-absolute-from-hebrew (list 10 10 h-year)) 7) 6) 11 10)) "Tzom Teveth")) (if all-hebrew-calendar-holidays (holiday-hebrew 11 15 "Tu B'Shevat"))))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
111
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
112 (put 'hebrew-holidays-2 'risky-local-variable t)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
113
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
114 (defvar hebrew-holidays-3 '((if all-hebrew-calendar-holidays (holiday-hebrew 11 (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (let* ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))) (s-s (calendar-hebrew-from-absolute (if (= (% (calendar-absolute-from-hebrew (list 7 1 h-year)) 7) 6) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 17 h-year))) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 16 h-year)))))) (day (extract-calendar-day s-s))) day)) "Shabbat Shirah"))))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
115
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
116 (put 'hebrew-holidays-3 'risky-local-variable t)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
117
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
118 (defvar hebrew-holidays-4 '((holiday-passover-etc) (if (and all-hebrew-calendar-holidays (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (= 21 (% year 28))))) (holiday-julian 3 26 "Kiddush HaHamah")) (if all-hebrew-calendar-holidays (holiday-tisha-b-av-etc))))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
119
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
120 (put 'hebrew-holidays-4 'risky-local-variable t)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
121
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
122 (defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 hebrew-holidays-3 hebrew-holidays-4) "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
123 *Jewish holidays.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
124 See the documentation for `calendar-holidays' for details.")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
125
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
126 (put 'hebrew-holidays 'risky-local-variable t)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
127
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
128 (defvar christian-holidays '((if all-christian-calendar-holidays (holiday-fixed 1 6 "Epiphany")) (holiday-easter-etc) (if all-christian-calendar-holidays (holiday-greek-orthodox-easter)) (if all-christian-calendar-holidays (holiday-fixed 8 15 "Assumption")) (if all-christian-calendar-holidays (holiday-advent)) (holiday-fixed 12 25 "Christmas") (if all-christian-calendar-holidays (holiday-julian 12 25 "Eastern Orthodox Christmas"))) "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
129 *Christian holidays.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
130 See the documentation for `calendar-holidays' for details.")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
131
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
132 (put 'christian-holidays 'risky-local-variable t)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
133
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
134 (defvar islamic-holidays '((holiday-islamic 1 1 (format "Islamic New Year %d" (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (extract-calendar-year (calendar-islamic-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))))) (if all-islamic-calendar-holidays (holiday-islamic 1 10 "Ashura")) (if all-islamic-calendar-holidays (holiday-islamic 3 12 "Mulad-al-Nabi")) (if all-islamic-calendar-holidays (holiday-islamic 7 26 "Shab-e-Mi'raj")) (if all-islamic-calendar-holidays (holiday-islamic 8 15 "Shab-e-Bara't")) (holiday-islamic 9 1 "Ramadan Begins") (if all-islamic-calendar-holidays (holiday-islamic 9 27 "Shab-e Qadr")) (if all-islamic-calendar-holidays (holiday-islamic 10 1 "Id-al-Fitr")) (if all-islamic-calendar-holidays (holiday-islamic 12 10 "Id-al-Adha"))) "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
135 *Islamic holidays.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
136 See the documentation for `calendar-holidays' for details.")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
137
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
138 (put 'islamic-holidays 'risky-local-variable t)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
139
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
140 (defvar solar-holidays '((if (fboundp 'atan) (solar-equinoxes-solstices)) (if (progn (require 'cal-dst) t) (funcall 'holiday-sexp calendar-daylight-savings-starts '(format "Daylight Savings Time Begins %s" (if (fboundp 'atan) (solar-time-string (/ calendar-daylight-savings-starts-time (float 60)) calendar-standard-time-zone-name) "")))) (funcall 'holiday-sexp calendar-daylight-savings-ends '(format "Daylight Savings Time Ends %s" (if (fboundp 'atan) (solar-time-string (/ calendar-daylight-savings-ends-time (float 60)) calendar-daylight-time-zone-name) "")))) "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
141 *Sun-related holidays.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
142 See the documentation for `calendar-holidays' for details.")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
143
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
144 (put 'solar-holidays 'risky-local-variable t)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
145
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
146 (defvar calendar-holidays (append general-holidays local-holidays other-holidays christian-holidays hebrew-holidays islamic-holidays solar-holidays) "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
147 *List of notable days for the command M-x holidays.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
148
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
149 Additional holidays are easy to add to the list, just put them in the list
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
150 `other-holidays' in your .emacs file. Similarly, by setting any of
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
151 `general-holidays', `local-holidays' `christian-holidays', `hebrew-holidays',
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
152 `islamic-holidays', or `solar-holidays' to nil in your .emacs file, you can
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
153 eliminate unwanted categories of holidays. The intention is that (in the US)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
154 `local-holidays' be set in site-init.el and `other-holidays' be set by the
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
155 user.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
156
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
157 Entries on the list are expressions that return (possibly empty) lists of
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
158 items of the form ((month day year) string) of a holiday in the in the
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
159 three-month period centered around `displayed-month' of `displayed-year'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
160 Several basic functions are provided for this purpose:
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
161
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
162 (holiday-fixed MONTH DAY STRING) is a fixed date on the Gregorian calendar
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
163 (holiday-float MONTH DAYNAME K STRING &optional day) is the Kth DAYNAME in
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
164 MONTH on the Gregorian calendar (0 for Sunday,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
165 etc.); K<0 means count back from the end of the
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
166 month. An optional parameter DAY means the Kth
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
167 DAYNAME after/before MONTH DAY.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
168 (holiday-hebrew MONTH DAY STRING) a fixed date on the Hebrew calendar
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
169 (holiday-islamic MONTH DAY STRING) a fixed date on the Islamic calendar
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
170 (holiday-julian MONTH DAY STRING) a fixed date on the Julian calendar
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
171 (holiday-sexp SEXP STRING) SEXP is a Gregorian-date-valued expression
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
172 in the variable `year'; if it evaluates to
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
173 a visible date, that's the holiday; if it
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
174 evaluates to nil, there's no holiday. STRING
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
175 is an expression in the variable `date'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
176
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
177 For example, to add Bastille Day, celebrated in France on July 14, add
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
178
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
179 (holiday-fixed 7 14 \"Bastille Day\")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
180
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
181 to the list. To add Hurricane Supplication Day, celebrated in the Virgin
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
182 Islands on the fourth Monday in August, add
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
183
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
184 (holiday-float 8 1 4 \"Hurricane Supplication Day\")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
185
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
186 to the list (the last Monday would be specified with `-1' instead of `4').
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
187 To add the last day of Hanukkah to the list, use
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
188
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
189 (holiday-hebrew 10 2 \"Last day of Hanukkah\")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
190
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
191 since the Hebrew months are numbered with 1 starting from Nisan, while to
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
192 add the Islamic feast celebrating Mohammed's birthday use
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
193
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
194 (holiday-islamic 3 12 \"Mohammed's Birthday\")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
195
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
196 since the Islamic months are numbered from 1 starting with Muharram. To
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
197 add Thomas Jefferson's birthday, April 2, 1743 (Julian), use
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
198
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
199 (holiday-julian 4 2 \"Jefferson's Birthday\")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
200
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
201 To include a holiday conditionally, use the sexp form or a conditional. For
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
202 example, to include American presidential elections, which occur on the first
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
203 Tuesday after the first Monday in November of years divisible by 4, add
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
204
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
205 (holiday-sexp
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
206 (if (zerop (% year 4))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
207 (calendar-gregorian-from-absolute
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
208 (1+ (calendar-dayname-on-or-before
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
209 1 (+ 6 (calendar-absolute-from-gregorian
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
210 (list 11 1 year)))))))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
211 \"US Presidential Election\")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
212
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
213 or
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
214
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
215 (if (zerop (% displayed-year 4))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
216 (holiday-fixed 11
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
217 (extract-calendar-day
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
218 (calendar-gregorian-from-absolute
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
219 (1+ (calendar-dayname-on-or-before
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
220 1 (+ 6 (calendar-absolute-from-gregorian
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
221 (list 11 1 displayed-year)))))))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
222 \"US Presidential Election\"))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
223
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
224 to the list. To include the phases of the moon, add
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
225
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
226 (lunar-phases)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
227
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
228 to the holiday list, where `lunar-phases' is an Emacs-Lisp function that
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
229 you've written to return a (possibly empty) list of the relevant VISIBLE dates
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
230 with descriptive strings such as
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
231
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
232 (((2 6 1989) \"New Moon\") ((2 12 1989) \"First Quarter Moon\") ... ).")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
233
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
234 (put 'calendar-holidays 'risky-local-variable t)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
235
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
236 (autoload 'calendar "calendar" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
237 Display a three-month calendar in another window.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
238 The three months appear side by side, with the current month in the middle
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
239 surrounded by the previous and next months. The cursor is put on today's date.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
240
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
241 If called with an optional prefix argument, prompts for month and year.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
242
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
243 This function is suitable for execution in a .emacs file; appropriate setting
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
244 of the variable `view-diary-entries-initially' will cause the diary entries for
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
245 the current date to be displayed in another window. The value of the variable
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
246 `number-of-diary-entries' controls the number of days of diary entries
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
247 displayed upon initial display of the calendar.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
248
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
249 An optional prefix argument ARG causes the calendar displayed to be ARG
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
250 months in the future if ARG is positive or in the past if ARG is negative;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
251 in this case the cursor goes on the first day of the month.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
252
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
253 Once in the calendar window, future or past months can be moved into view.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
254 Arbitrary months can be displayed, or the calendar can be scrolled forward
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
255 or backward.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
256
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
257 The cursor can be moved forward or backward by one day, one week, one month,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
258 or one year. All of these commands take prefix arguments which, when negative,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
259 cause movement in the opposite direction. For convenience, the digit keys
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
260 and the minus sign are automatically prefixes. The window is replotted as
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
261 necessary to display the desired date.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
262
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
263 Diary entries can be marked on the calendar or displayed in another window.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
264
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
265 Use M-x describe-mode for details of the key bindings in the calendar window.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
266
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
267 The Gregorian calendar is assumed.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
268
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
269 After loading the calendar, the hooks given by the variable
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
270 `calendar-load-hook' are run. This is the place to add key bindings to the
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
271 calendar-mode-map.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
272
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
273 After preparing the calendar window initially, the hooks given by the variable
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
274 `initial-calendar-window-hook' are run.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
275
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
276 The hooks given by the variable `today-visible-calendar-hook' are run
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
277 everytime the calendar window gets scrolled, if the current date is visible
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
278 in the window. If it is not visible, the hooks given by the variable
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
279 `today-invisible-calendar-hook' are run. Thus, for example, setting
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
280 `today-visible-calendar-hook' to 'calendar-star-date will cause today's date
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
281 to be replaced by asterisks to highlight it whenever it is in the window." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
282
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
283 (autoload 'list-yahrzeit-dates "calendar" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
284 List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
285 When called interactively from the calendar window, the date of death is taken
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
286 from the cursor position." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
287
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
288 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
289
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
290 ;;;### (autoloads (diary) "diary-lib" "calendar/diary-lib.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
291
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
292 (autoload 'diary "diary-lib" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
293 Generate the diary window for ARG days starting with the current date.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
294 If no argument is provided, the number of days of diary entries is governed
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
295 by the variable `number-of-diary-entries'. This function is suitable for
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
296 execution in a `.emacs' file." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
297
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
298 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
299
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
300 ;;;### (autoloads (holidays) "holidays" "calendar/holidays.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
301
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
302 (autoload 'holidays "holidays" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
303 Display the holidays for last month, this month, and next month.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
304 If called with an optional prefix argument, prompts for month and year.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
305
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
306 This function is suitable for execution in a .emacs file." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
307
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
308 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
309
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
310 ;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
311
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
312 (autoload 'phases-of-moon "lunar" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
313 Display the quarters of the moon for last month, this month, and next month.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
314 If called with an optional prefix argument, prompts for month and year.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
315
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
316 This function is suitable for execution in a .emacs file." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
317
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
318 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
319
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
320 ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset) "solar" "calendar/solar.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
321
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
322 (defvar calendar-time-display-form '(12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")")) "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
323 *The pseudo-pattern that governs the way a time of day is formatted.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
324
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
325 A pseudo-pattern is a list of expressions that can involve the keywords
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
326 `12-hours', `24-hours', and `minutes', all numbers in string form,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
327 and `am-pm' and `time-zone', both alphabetic strings.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
328
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
329 For example, the form
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
330
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
331 '(24-hours \":\" minutes
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
332 (if time-zone \" (\") time-zone (if time-zone \")\"))
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
333
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
334 would give military-style times like `21:07 (UTC)'.")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
335
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
336 (defvar calendar-latitude nil "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
337 *Latitude of `calendar-location-name' in degrees.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
338
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
339 The value can be either a decimal fraction (one place of accuracy is
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
340 sufficient), + north, - south, such as 40.7 for New York City, or the value
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
341 can be a vector [degrees minutes north/south] such as [40 50 north] for New
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
342 York City.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
343
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
344 This variable should be set in site-local.el.")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
345
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
346 (defvar calendar-longitude nil "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
347 *Longitude of `calendar-location-name' in degrees.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
348
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
349 The value can be either a decimal fraction (one place of accuracy is
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
350 sufficient), + east, - west, such as -73.9 for New York City, or the value
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
351 can be a vector [degrees minutes east/west] such as [73 55 west] for New
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
352 York City.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
353
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
354 This variable should be set in site-local.el.")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
355
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
356 (defvar calendar-location-name '(let ((float-output-format "%.1f")) (format "%s%s, %s%s" (if (numberp calendar-latitude) (abs calendar-latitude) (+ (aref calendar-latitude 0) (/ (aref calendar-latitude 1) 60.0))) (if (numberp calendar-latitude) (if (> calendar-latitude 0) "N" "S") (if (equal (aref calendar-latitude 2) 'north) "N" "S")) (if (numberp calendar-longitude) (abs calendar-longitude) (+ (aref calendar-longitude 0) (/ (aref calendar-longitude 1) 60.0))) (if (numberp calendar-longitude) (if (> calendar-longitude 0) "E" "W") (if (equal (aref calendar-latitude 2) 'east) "E" "W")))) "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
357 *Expression evaluating to name of `calendar-longitude', calendar-latitude'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
358 For example, \"New York City\". Default value is just the latitude, longitude
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
359 pair.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
360
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
361 This variable should be set in site-local.el.")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
362
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
363 (autoload 'sunrise-sunset "solar" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
364 Local time of sunrise and sunset for today. Accurate to +/- 2 minutes.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
365 If called with an optional prefix argument, prompt for date.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
366
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
367 If called with an optional double prefix argument, prompt for longitude,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
368 latitude, time zone, and date, and always use standard time.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
369
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
370 This function is suitable for execution in a .emacs file." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
371
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
372 (autoload 'solar-equinoxes-solstices "solar" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
373 Date and time of equinoxes and solstices, if visible in the calendar window.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
374 Requires floating point." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
375
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
376 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
377
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
378 (provide 'calendar-autoloads)