summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2019-06-10 09:43:37 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2019-06-10 09:43:37 +0200
commit3ecf1fb7b93aafd6349452076724b9dff5627f9e (patch)
tree8069cf02e48456e97d5c839ede85e097babec023
parent0ff65e9f4c37e1cbcd6403a185eede5199d1e934 (diff)
downloadorg-mode-3ecf1fb7b93aafd6349452076724b9dff5627f9e.tar.gz
ox: Silence byte-compiler
* lisp/ox.el (org-export-resolve-link): Use `org-link-make-string' instead of `org-make-link-string'.
-rw-r--r--lisp/ox.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ox.el b/lisp/ox.el
index 6641e3d..0cd06eb 100644
--- a/lisp/ox.el
+++ b/lisp/ox.el
@@ -4484,7 +4484,7 @@ Return value can be an object or an element:
(when (stringp link)
(setq link (with-temp-buffer
(save-excursion
- (insert (org-make-link-string link)))
+ (insert (org-link-make-string link)))
(org-element-link-parser))))
(pcase (org-element-property :type link)
((or "custom-id" "id") (org-export-resolve-id-link link info))