aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2004-09-22 23:21:18 +0000
committerGlenn Morris2004-09-22 23:21:18 +0000
commitd1493acd5a10a9ca3c469e4ef33718ed9dd1067d (patch)
tree3313903e11f25c553b6bc49aacab938324999a3b
parent1a499493553aac97b1faa13be89e0f846785ce40 (diff)
downloademacs-d1493acd5a10a9ca3c469e4ef33718ed9dd1067d.tar.gz
emacs-d1493acd5a10a9ca3c469e4ef33718ed9dd1067d.zip
Update maintainer.
From H�n Malmedal <hmalmedal@yahoo.no>: (christian-holidays): Adapt for new behaviour of holiday-advent and holiday-easter-etc functions.
-rw-r--r--lisp/calendar/calendar.el35
1 files changed, 33 insertions, 2 deletions
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el
index 43171255bbe..9d38cde21ce 100644
--- a/lisp/calendar/calendar.el
+++ b/lisp/calendar/calendar.el
@@ -4,6 +4,7 @@
4;; 2000, 2001, 2003, 2004 Free Software Foundation, Inc. 4;; 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
5 5
6;; Author: Edward M. Reingold <reingold@cs.uiuc.edu> 6;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
7;; Maintainer: Glenn Morris <gmorris@ast.cam.ac.uk>
7;; Keywords: calendar 8;; Keywords: calendar
8;; Human-Keywords: calendar, Gregorian calendar, diary, holidays 9;; Human-Keywords: calendar, Gregorian calendar, diary, holidays
9 10
@@ -1046,13 +1047,43 @@ See the documentation for `calendar-holidays' for details."
1046(defcustom christian-holidays 1047(defcustom christian-holidays
1047 '((if all-christian-calendar-holidays 1048 '((if all-christian-calendar-holidays
1048 (holiday-fixed 1 6 "Epiphany")) 1049 (holiday-fixed 1 6 "Epiphany"))
1049 (holiday-easter-etc) 1050 (holiday-easter-etc 0 "Easter Sunday")
1051 (holiday-easter-etc -2 "Good Friday")
1052 (holiday-easter-etc -46 "Ash Wednesday")
1053 (if all-christian-calendar-holidays
1054 (holiday-easter-etc -63 "Septuagesima Sunday"))
1055 (if all-christian-calendar-holidays
1056 (holiday-easter-etc -56 "Sexagesima Sunday"))
1057 (if all-christian-calendar-holidays
1058 (holiday-easter-etc -49 "Shrove Sunday"))
1059 (if all-christian-calendar-holidays
1060 (holiday-easter-etc -48 "Shrove Monday"))
1061 (if all-christian-calendar-holidays
1062 (holiday-easter-etc -47 "Shrove Tuesday"))
1063 (if all-christian-calendar-holidays
1064 (holiday-easter-etc -14 "Passion Sunday"))
1065 (if all-christian-calendar-holidays
1066 (holiday-easter-etc -7 "Palm Sunday"))
1067 (if all-christian-calendar-holidays
1068 (holiday-easter-etc -3 "Maundy Thursday"))
1069 (if all-christian-calendar-holidays
1070 (holiday-easter-etc 35 "Rogation Sunday"))
1071 (if all-christian-calendar-holidays
1072 (holiday-easter-etc 39 "Ascension Day"))
1073 (if all-christian-calendar-holidays
1074 (holiday-easter-etc 49 "Pentecost (Whitsunday)"))
1075 (if all-christian-calendar-holidays
1076 (holiday-easter-etc 50 "Whitmonday"))
1077 (if all-christian-calendar-holidays
1078 (holiday-easter-etc 56 "Trinity Sunday"))
1079 (if all-christian-calendar-holidays
1080 (holiday-easter-etc 60 "Corpus Christi"))
1050 (if all-christian-calendar-holidays 1081 (if all-christian-calendar-holidays
1051 (holiday-greek-orthodox-easter)) 1082 (holiday-greek-orthodox-easter))
1052 (if all-christian-calendar-holidays 1083 (if all-christian-calendar-holidays
1053 (holiday-fixed 8 15 "Assumption")) 1084 (holiday-fixed 8 15 "Assumption"))
1054 (if all-christian-calendar-holidays 1085 (if all-christian-calendar-holidays
1055 (holiday-advent)) 1086 (holiday-advent 0 "Advent"))
1056 (holiday-fixed 12 25 "Christmas") 1087 (holiday-fixed 12 25 "Christmas")
1057 (if all-christian-calendar-holidays 1088 (if all-christian-calendar-holidays
1058 (holiday-julian 12 25 "Eastern Orthodox Christmas"))) 1089 (holiday-julian 12 25 "Eastern Orthodox Christmas")))