diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el index 8b6749d3d..5dfbd7a7f 100644 --- a/lisp/ox-latex.el +++ b/lisp/ox-latex.el @@ -2011,8 +2011,7 @@ See `org-latex-format-headline-function' for details." text (and tags (format "\\hfill{}\\textsc{%s}" - (mapconcat (lambda (tag) (org-latex-plain-text tag info)) - tags ":"))))) + (mapconcat #'org-latex--protect-text tags ":"))))) ;;;; Horizontal Rule @@ -2094,7 +2093,7 @@ holding contextual information." todo todo-type priority title tags contents info))) (defun org-latex-format-inlinetask-default-function - (todo _todo-type priority title tags contents info) + (todo _todo-type priority title tags contents info) "Default format function for a inlinetasks. See `org-latex-format-inlinetask-function' for details." (let ((full-title @@ -2103,9 +2102,7 @@ See `org-latex-format-inlinetask-function' for details." title (when tags (format "\\hfill{}\\textsc{:%s:}" - (mapconcat - (lambda (tag) (org-latex-plain-text tag info)) - tags ":")))))) + (mapconcat #'org-latex--protect-text tags ":")))))) (concat "\\begin{center}\n" "\\fbox{\n" "\\begin{minipage}[c]{.6\\textwidth}\n"