summaryrefslogtreecommitdiff
path: root/lisp/textmodes/org.el
diff options
context:
space:
mode:
authorCarsten Dominik <dominik@science.uva.nl>2006-05-11 08:49:36 +0000
committerCarsten Dominik <dominik@science.uva.nl>2006-05-11 08:49:36 +0000
commitf6e25a10e3a96fd46194027dcf43e9a8900317f3 (patch)
tree06170727920b36051beb99f98ef60cc1440307c0 /lisp/textmodes/org.el
parente3eea8436d864519022dd5825ac079e5ec89af95 (diff)
(org-read-date, org-goto-calendar, org-agenda-goto-calendar): Bind
`view-calendar-holidays-initially' to nil.
Diffstat (limited to 'lisp/textmodes/org.el')
-rw-r--r--lisp/textmodes/org.el3
1 files changed, 3 insertions, 0 deletions
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)))