changeset 102534:e4f58898be4a

m-v corrections.
author Deepak Goel <deego@gnufans.org>
date Fri, 13 Mar 2009 19:59:15 +0000
parents f1bddbcb4b7e
children 915f463d82d4
files lisp/org/org-bbdb.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/org/org-bbdb.el	Fri Mar 13 19:56:33 2009 +0000
+++ b/lisp/org/org-bbdb.el	Fri Mar 13 19:59:15 2009 +0000
@@ -225,7 +225,7 @@
 (defun org-bbdb-anniv-extract-date (time-str)
   "Convert YYYY-MM-DD to (month date year).
 Argument TIME-STR is the value retrieved from BBDB."
-  (multiple-value-bind (y m d) (bbdb-split time-str "-")
+  (multiple-value-bind (y m d) (values-list (bbdb-split time-str "-"))
     (list (string-to-number m)
 	  (string-to-number d)
 	  (string-to-number y))))
@@ -258,7 +258,7 @@
         (while annivs
           (setq split (org-bbdb-anniv-split (pop annivs)))
           (multiple-value-bind (m d y)
-              (funcall org-bbdb-extract-date-fun (car split))
+              (values-list (funcall org-bbdb-extract-date-fun (car split)))
             (setq tmp (gethash (list m d) org-bbdb-anniv-hash))
             (puthash (list m d) (cons (list y
                                             (bbdb-record-name rec)