* lisp/org.el (org-translate-link): Fix bug

This commit is contained in:
Nicolas Goaziou 2012-05-01 15:31:53 +02:00
parent adb10d1543
commit b9d98cf926
1 changed files with 1 additions and 1 deletions

View File

@ -9433,7 +9433,7 @@ If the link is in hidden text, expose it."
(string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
(progn
(setq s (funcall org-link-translation-function
(match-string 1) (match-string 2)))
(match-string 1 s) (match-string 2 s)))
(concat (car s) ":" (cdr s)))
s))