summaryrefslogtreecommitdiff
path: root/lisp/org
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2008-04-07 02:02:15 +0000
committerGlenn Morris <rgm@gnu.org>2008-04-07 02:02:15 +0000
commiteee6134c66c38d89ce268069ec07e102df79912c (patch)
tree6930c371e6c76a08fdd2d962d63fcea983096dc6 /lisp/org
parente803eab7779f54910464567216ed486d467b8537 (diff)
downloademacs-eee6134c66c38d89ce268069ec07e102df79912c.tar.gz
(org-agenda-format-date-aligned, org-agenda-execute-calendar-command):
Access date elements directly rather than using calendar functions. (org-read-date, org-goto-calendar, org-agenda-goto-calendar): Also set calendar-view-diary-initially-flag, calendar-view-holidays-initially-flag (org-get-entries-from-diary): Also set diary-fancy-buffer. (org-agenda-execute-calendar-command): No need to set displayed-day.
Diffstat (limited to 'lisp/org')
-rw-r--r--lisp/org/org.el28
1 files changed, 17 insertions, 11 deletions
diff --git a/lisp/org/org.el b/lisp/org/org.el
index 1da611aa790..9deb8f49ab4 100644
--- a/lisp/org/org.el
+++ b/lisp/org/org.el
@@ -2851,9 +2851,9 @@ a calendar-style date list like (month day year)."
This function makes sure that dates are aligned for easy reading."
(format "%-9s %2d %s %4d"
(calendar-day-name date)
- (extract-calendar-day date)
- (calendar-month-name (extract-calendar-month date))
- (extract-calendar-year date)))
+ (cadr date) ; day
+ (calendar-month-name (car date)) ; month
+ (nth 2 date))) ; year
(defcustom org-agenda-include-diary nil
"If non-nil, include in the agenda entries from the Emacs Calendar's diary."
@@ -17912,7 +17912,9 @@ user."
(setq def (apply 'encode-time defdecode)
defdecode (decode-time def)))))
(calendar-move-hook nil)
+ (calendar-view-diary-initially-flag nil)
(view-diary-entries-initially nil)
+ (calendar-view-holidays-initially-flag nil)
(view-calendar-holidays-initially nil)
(timestr (format-time-string
(if with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") def))
@@ -18831,7 +18833,9 @@ A prefix ARG can be used to force the current date."
(interactive "P")
(let ((tsr org-ts-regexp) diff
(calendar-move-hook nil)
+ (calendar-view-holidays-initially-flag nil)
(view-calendar-holidays-initially nil)
+ (calendar-view-diary-initially-flag nil)
(view-diary-entries-initially nil))
(if (or (org-at-timestamp-p)
(save-excursion
@@ -21593,7 +21597,8 @@ MATCH is being ignored."
(defun org-get-entries-from-diary (date)
"Get the (Emacs Calendar) diary entries for DATE."
(require 'diary-lib)
- (let* ((fancy-diary-buffer "*temporary-fancy-diary-buffer*")
+ (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
+ (fancy-diary-buffer diary-fancy-buffer)
(diary-display-hook '(fancy-diary-display))
(pop-up-frames nil)
(list-diary-entries-hook
@@ -21607,9 +21612,9 @@ MATCH is being ignored."
(funcall (if (fboundp 'diary-list-entries)
'diary-list-entries 'list-diary-entries)
date 1)))
- (if (not (get-buffer fancy-diary-buffer))
+ (if (not (get-buffer diary-fancy-buffer))
(setq entries nil)
- (with-current-buffer fancy-diary-buffer
+ (with-current-buffer diary-fancy-buffer
(setq buffer-read-only nil)
(if (zerop (buffer-size))
;; No entries
@@ -21621,7 +21626,7 @@ MATCH is being ignored."
(setq entries nil)
(setq entries (buffer-substring (point-min) (- (point-max) 1)))))
(set-buffer-modified-p nil)
- (kill-buffer fancy-diary-buffer)))
+ (kill-buffer diary-fancy-buffer)))
(when entries
(setq entries (org-split-string entries "\n"))
(setq entries
@@ -23684,10 +23689,9 @@ the cursor position."
(point (point))
(date (calendar-gregorian-from-absolute
(get-text-property point 'day)))
- ;; the following 3 vars are needed in the calendar
- (displayed-day (extract-calendar-day date))
- (displayed-month (extract-calendar-month date))
- (displayed-year (extract-calendar-year date)))
+ ;; the following 2 vars are needed in the calendar
+ (displayed-month (car date))
+ (displayed-year (nth 2 date)))
(unwind-protect
(progn
(fset 'calendar-cursor-to-date
@@ -23732,7 +23736,9 @@ 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)
+ (calendar-view-holidays-initially-flag nil)
(view-calendar-holidays-initially nil)
+ (calendar-view-diary-initially-flag nil)
(view-diary-entries-initially nil))
(calendar)
(calendar-goto-date date)))