LaTeX/pdf processing: Quote file argument for the shell

* lisp/org-latex.el (org-export-as-pdf): Quote file argument for the shell.

Patch by Gregory Grubbs.
This commit is contained in:
Carsten Dominik 2010-07-18 07:50:43 +02:00
parent 7d2dc48b2a
commit cdf08f347a
1 changed files with 1 additions and 1 deletions

View File

@ -836,7 +836,7 @@ when PUB-DIR is set, use this as the publishing directory."
(with-current-buffer outbuf (erase-buffer))
(message "Processing LaTeX file...")
(if (and cmds (symbolp cmds))
(funcall cmds file)
(funcall cmds (shell-quote-argument file))
(while cmds
(setq cmd (pop cmds))
(while (string-match "%b" cmd)