diff options
| author | Deepak Goel | 2009-03-13 19:59:15 +0000 |
|---|---|---|
| committer | Deepak Goel | 2009-03-13 19:59:15 +0000 |
| commit | 90ca3a46fd47de08f1f4471abe433397341ed006 (patch) | |
| tree | 0c82afadc7b08064545b833aacc1226b562ae92c | |
| parent | 3c2fbb994b9d664a5e1d529cd7321dc68057ed2b (diff) | |
| download | emacs-90ca3a46fd47de08f1f4471abe433397341ed006.tar.gz emacs-90ca3a46fd47de08f1f4471abe433397341ed006.zip | |
m-v corrections.
| -rw-r--r-- | lisp/org/org-bbdb.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org/org-bbdb.el b/lisp/org/org-bbdb.el index 55200c2ab8c..f9fe216082f 100644 --- a/lisp/org/org-bbdb.el +++ b/lisp/org/org-bbdb.el | |||
| @@ -225,7 +225,7 @@ italicised, in all other cases it is left unchanged." | |||
| 225 | (defun org-bbdb-anniv-extract-date (time-str) | 225 | (defun org-bbdb-anniv-extract-date (time-str) |
| 226 | "Convert YYYY-MM-DD to (month date year). | 226 | "Convert YYYY-MM-DD to (month date year). |
| 227 | Argument TIME-STR is the value retrieved from BBDB." | 227 | Argument TIME-STR is the value retrieved from BBDB." |
| 228 | (multiple-value-bind (y m d) (bbdb-split time-str "-") | 228 | (multiple-value-bind (y m d) (values-list (bbdb-split time-str "-")) |
| 229 | (list (string-to-number m) | 229 | (list (string-to-number m) |
| 230 | (string-to-number d) | 230 | (string-to-number d) |
| 231 | (string-to-number y)))) | 231 | (string-to-number y)))) |
| @@ -258,7 +258,7 @@ The anniversaries are assumed to be stored `org-bbdb-anniversary-field'." | |||
| 258 | (while annivs | 258 | (while annivs |
| 259 | (setq split (org-bbdb-anniv-split (pop annivs))) | 259 | (setq split (org-bbdb-anniv-split (pop annivs))) |
| 260 | (multiple-value-bind (m d y) | 260 | (multiple-value-bind (m d y) |
| 261 | (funcall org-bbdb-extract-date-fun (car split)) | 261 | (values-list (funcall org-bbdb-extract-date-fun (car split))) |
| 262 | (setq tmp (gethash (list m d) org-bbdb-anniv-hash)) | 262 | (setq tmp (gethash (list m d) org-bbdb-anniv-hash)) |
| 263 | (puthash (list m d) (cons (list y | 263 | (puthash (list m d) (cons (list y |
| 264 | (bbdb-record-name rec) | 264 | (bbdb-record-name rec) |