* [PATCH] Don't call calendar-absolute-from-gregorian in org-diary-class
@ 2011-07-03 14:45 Rémi Vanicat
2011-07-04 9:01 ` Bastien
0 siblings, 1 reply; 2+ messages in thread
From: Rémi Vanicat @ 2011-07-03 14:45 UTC (permalink / raw)
To: emacs-orgmode
calendar-absolute-from-gregorian return a number of day. But the
result is used as if it was a (year month day) list.
---
lisp/org-agenda.el | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 2bec518..66af554 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -4879,10 +4879,8 @@ be skipped.
This function is here only for backward compatibility and it is deprecated,
please use `org-class' instead."
- (let* ((date1 (calendar-absolute-from-gregorian
- (org-order-calendar-date-args m1 d1 y1)))
- (date2 (calendar-absolute-from-gregorian
- (org-order-calendar-date-args m2 d2 y2)))
+ (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
+ (date2 (org-order-calendar-date-args m2 d2 y2))
(d (calendar-absolute-from-gregorian date)))
(org-class
(nth 2 date1) (car date1) (nth 1 date1)
--
1.7.5.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] Don't call calendar-absolute-from-gregorian in org-diary-class
2011-07-03 14:45 [PATCH] Don't call calendar-absolute-from-gregorian in org-diary-class Rémi Vanicat
@ 2011-07-04 9:01 ` Bastien
0 siblings, 0 replies; 2+ messages in thread
From: Bastien @ 2011-07-04 9:01 UTC (permalink / raw)
To: Rémi Vanicat; +Cc: emacs-orgmode
Hi Rémi,
Rémi Vanicat <vanicat@debian.org> writes:
> calendar-absolute-from-gregorian return a number of day. But the
> result is used as if it was a (year month day) list.
Applied, with a slight modification.
Thanks,
--
Bastien
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-07-04 9:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-03 14:45 [PATCH] Don't call calendar-absolute-from-gregorian in org-diary-class Rémi Vanicat
2011-07-04 9:01 ` Bastien
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).