emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org-contacts fb5c9dcec9 043/154: orgcontacts.el: Fix `d


From: ELPA Syncer
Subject: [elpa] externals/org-contacts fb5c9dcec9 043/154: orgcontacts.el: Fix `date' being broken in `org-contacts-anniversaries'.
Date: Fri, 9 Sep 2022 15:58:25 -0400 (EDT)

branch: externals/org-contacts
commit fb5c9dcec91ed209738a8dbb74d3364c2968cd47
Author: RĂ¼diger Sonderfeld <ruediger@c-plusplus.de>
Commit: Bastien Guerry <bzg@altern.org>

    orgcontacts.el: Fix `date' being broken in `org-contacts-anniversaries'.
    
    * contrib/lisp/org-contacts.el: Add defvar for date.  Similar to org.el.
    
      (org-contacts-anniversaries): Setting date to nil breaks the
      function.  Bug was introduced in 680dc1f24.
    
    Signed-off-by: RĂ¼diger Sonderfeld <ruediger@c-plusplus.de>
---
 org-contacts.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/org-contacts.el b/org-contacts.el
index 4ffe36001c..d849e7fdf2 100644
--- a/org-contacts.el
+++ b/org-contacts.el
@@ -499,6 +499,7 @@ A group FOO is composed of contacts with the tag FOO."
                ;; show the next heading
                (org-flag-heading nil)))))))
 
+(org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
 (defun org-contacts-anniversaries (&optional field format)
   "Compute FIELD anniversary for each contact, returning FORMAT.
 Default FIELD value is \"BIRTHDAY\".
@@ -512,8 +513,7 @@ Format is a string matching the following format 
specification:
   (let ((calendar-date-style 'american)
         (entry ""))
     (unless format (setq format org-contacts-birthday-format))
-    (loop with date = nil              ; FIXME: prevent a warning
-         for contact in (org-contacts-filter)
+    (loop for contact in (org-contacts-filter)
           for anniv = (let ((anniv (cdr (assoc-string
                                          (or field 
org-contacts-birthday-property)
                                          (caddr contact)))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]