From 3b92bdd24ed2677a5c2d4ffd531e817031e6509a Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 14 Nov 1993 22:51:17 +0000 Subject: [PATCH] (solar-holidays): Change top-level progn to an if. --- lisp/calendar/calendar.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index a1b112252e1..0875b83eff3 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el @@ -749,10 +749,11 @@ See the documentation for `calendar-holidays' for details.") (defvar solar-holidays '((if (fboundp 'atan) (solar-equinoxes-solstices)) - (progn - (require 'cal-dst) + (if (progn + (require 'cal-dst) + t) (funcall - 'holiday-sexp + 'holiday-sexp calendar-daylight-savings-starts '(format "Daylight Savings Time Begins %s" (if (fboundp 'atan) -- 2.39.5