# HG changeset patch # User Glenn Morris # Date 1218398745 0 # Node ID 2ba6b3010dbe7d7566324cc8904316658786bea3 # Parent 867aeedd505578c1178488055d8667676e698958 (holiday-julian): Fix a problem with holidays in the last fortnight in Julian October (sync from trunk 2008-03-31). diff -r 867aeedd5055 -r 2ba6b3010dbe lisp/calendar/cal-julian.el --- a/lisp/calendar/cal-julian.el Sun Aug 10 20:05:15 2008 +0000 +++ b/lisp/calendar/cal-julian.el Sun Aug 10 20:05:45 2008 +0000 @@ -153,7 +153,7 @@ (julian-end (calendar-julian-from-absolute end-date)) (julian-y1 (extract-calendar-year julian-start)) (julian-y2 (extract-calendar-year julian-end))) - (setq year (if (< 10 month) julian-y1 julian-y2)) + (setq year (if (<= 10 month) julian-y1 julian-y2)) (let ((date (calendar-gregorian-from-absolute (calendar-absolute-from-julian (list month day year)))))