Преглед изворни кода

org.el: Handle nil org-latex-to-mathml-jar-file

* org.el (org-create-math-formula): Handle nil
  org-latex-to-mathml-jar-file.
Rasmus пре 10 година
родитељ
комит
2bdc661fde
1 измењених фајлова са 4 додато и 2 уклоњено
  1. 4 2
      lisp/org.el

+ 4 - 2
lisp/org.el

@@ -19119,8 +19119,10 @@ inspection."
 			(make-temp-name (expand-file-name  "ltxmathml-out"))))
 	 (cmd (format-spec
 	       org-latex-to-mathml-convert-command
-	       `((?j . ,(shell-quote-argument
-			 (expand-file-name org-latex-to-mathml-jar-file)))
+	       `((?j . ,(and org-latex-to-mathml-jar-file
+			 (shell-quote-argument
+			  (expand-file-name
+			   org-latex-to-mathml-jar-file))))
 		 (?I . ,(shell-quote-argument tmp-in-file))
 		 (?i . ,latex-frag)
 		 (?o . ,(shell-quote-argument tmp-out-file)))))