From 681a501b34396ece62b10c2eeaf0c94b2cdaa5f4 Mon Sep 17 00:00:00 2001 From: Masanao Igarashi Date: Tue, 13 Aug 2019 09:56:15 +0900 Subject: [PATCH] Remove `org-get-tags-string' (upstream commit edc159c2) --- ox-rst.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ox-rst.el b/ox-rst.el index 29e98d4..d8aa650 100644 --- a/ox-rst.el +++ b/ox-rst.el @@ -401,8 +401,7 @@ possible. It doesn't apply to `inlinetask' elements." (plist-get info :with-tags) (let ((tag-list (org-export-get-tags element info))) (and tag-list - (format ":%s:" - (mapconcat 'identity tag-list ":")))))) + (org-make-tag-string tag-list))))) (priority (and (plist-get info :with-priority) (let ((char (org-element-property :priority element)))