From: Carsten Dominik Date: Thu, 11 May 2006 08:49:36 +0000 (+0000) Subject: (org-read-date, org-goto-calendar, org-agenda-goto-calendar): Bind X-Git-Tag: emacs-pretest-22.0.90~2627 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f6e25a10e3a96fd46194027dcf43e9a8900317f3;p=emacs.git (org-read-date, org-goto-calendar, org-agenda-goto-calendar): Bind `view-calendar-holidays-initially' to nil. --- diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el index 3c18eda2305..ea9aa4448ee 100644 --- a/lisp/textmodes/org.el +++ b/lisp/textmodes/org.el @@ -4348,6 +4348,7 @@ used to insert the time stamp into the buffer to include the time." (parse-time-string (match-string 1)))) ct)) (calendar-move-hook nil) + (view-calendar-holidays-initially nil) (view-diary-entries-initially nil) (timestr (format-time-string (if with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") default-time)) @@ -4724,6 +4725,7 @@ A prefix ARG can be used to force the current date." (interactive "P") (let ((tsr org-ts-regexp) diff (calendar-move-hook nil) + (view-calendar-holidays-initially nil) (view-diary-entries-initially nil)) (if (or (org-at-timestamp-p) (save-excursion @@ -6910,6 +6912,7 @@ argument, latitude and longitude will be prompted for." (error "Don't know which date to open in calendar"))) (date (calendar-gregorian-from-absolute day)) (calendar-move-hook nil) + (view-calendar-holidays-initially nil) (view-diary-entries-initially nil)) (calendar) (calendar-goto-date date)))