From 909a04e011a8c86bdce41e83de806024f1235089 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 11 Jan 2017 21:00:37 +0100 Subject: [PATCH] ox: Fix "user-error: Unable to resolve link nil" message * lisp/ox.el (org-export-resolve-fuzzy-link): Fix typo preventing to report the proper path of the broken link. Reported-by: Eric S Fraga --- lisp/ox.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/ox.el b/lisp/ox.el index 5a9630ca0..f07116e2f 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -4267,8 +4267,7 @@ significant." (and (org-export-match-search-cell-p datum search-cells) datum))))) (unless matches - (signal 'org-link-broken - (list (org-element-property :raw-path link)))) + (signal 'org-link-broken (list (org-element-property :path link)))) (puthash search-cells ;; There can be multiple matches for un-typed searches, i.e.,