From f8947675cfb72b39af328ee9fc5225772e1261ff Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?FEL=C5=A0=C3=96CI=20Marek?= <marek.felsoci@inria.fr>
Date: Thu, 18 Jan 2024 22:46:50 +0100
Subject: [PATCH] latex-publish.el: latexmk command must not contain line
 breaks

---
 latex-publish.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/latex-publish.el b/latex-publish.el
index 3f68a32..e53f01f 100644
--- a/latex-publish.el
+++ b/latex-publish.el
@@ -1,7 +1,7 @@
 ;; Override the default LaTeX publishing command.
 (setq org-latex-pdf-process
-      (list "latexmk --shell-escape -f -pdf -%latex -interaction=nonstopmode
--output-directory=%o %f"))
+      (list
+       "latexmk --shell-escape -f -pdf -%latex -interaction=nonstopmode -output-directory=%o %f"))
 
 ;; Preserve user-defined labels during the export to PDF via LaTeX.
 (setq org-latex-prefer-user-labels t)
-- 
GitLab