Merge branch 'maint' of orgmode.org:org-mode into maint
This commit is contained in:
commit
e6918b0bb2
|
@ -400,8 +400,11 @@ This is used by Org to re-create the anniversary hash table."
|
|||
(defun org-bbdb-complete-link ()
|
||||
"Read a bbdb link with name completion."
|
||||
(require 'bbdb-com)
|
||||
(concat "bbdb:"
|
||||
(bbdb-record-name (car (bbdb-completing-read-record "Name: ")))))
|
||||
(let ((rec (bbdb-completing-read-record "Name: ")))
|
||||
(concat "bbdb:"
|
||||
(bbdb-record-name (if (listp rec)
|
||||
(car rec)
|
||||
rec)))))
|
||||
|
||||
(defun org-bbdb-anniv-export-ical ()
|
||||
"Extract anniversaries from BBDB and convert them to icalendar format."
|
||||
|
|
Loading…
Reference in New Issue