org-bbdb-export: use a better description.

* org-bbdb.el (org-bbdb-export): When a link description has been
added by org-export-normalize-links, use path instead (remove the
`bbdb:' prefix).

The existing code handled the case where desc is nil. However, this no
longer occurs, since org-export-normalize-links now automatically adds
a desc to links, with a `bbdb:' prefix that would not usually be
wanted in exported text. The patch results in the same output as
originally intended.

TINYCHANGE
This commit is contained in:
Christian Moe 2011-02-15 05:37:17 +01:00 committed by Bastien Guerry
parent 8ee7408edb
commit 740afd558d
1 changed files with 5 additions and 3 deletions

View File

@ -208,10 +208,12 @@ date year)."
"Create the export version of a BBDB link specified by PATH or DESC.
If exporting to either HTML or LaTeX FORMAT the link will be
italicized, in all other cases it is left unchanged."
(when (string= desc (format "bbdb:%s" path))
(setq desc path))
(cond
((eq format 'html) (format "<i>%s</i>" (or desc path)))
((eq format 'latex) (format "\\textit{%s}" (or desc path)))
(t (or desc path))))
((eq format 'html) (format "<i>%s</i>" desc))
((eq format 'latex) (format "\\textit{%s}" desc))
(t desc)))
(defun org-bbdb-open (name)
"Follow a BBDB link to NAME."