org-e-latex: Fix compile bugs

* EXPERIMENTAL/org-e-latex.el (org-e-latex-compile): Fix compile bugs.
This commit is contained in:
Nicolas Goaziou 2012-02-23 18:26:12 +01:00
parent 0fa24209cf
commit 07368bbc09
1 changed files with 3 additions and 3 deletions

View File

@ -2122,8 +2122,8 @@ Return PDF file name or an error if it couldn't be produced."
(progn
(cond
;; A function is provided: Apply it.
((functionp org-latex-to-pdf-process)
(funcall org-latex-to-pdf-process (shell-quote-argument texfile)))
((functionp org-e-latex-pdf-process)
(funcall org-e-latex-pdf-process (shell-quote-argument texfile)))
;; A list is provided: Replace %b, %f and %o with appropriate
;; values in each command before applying it. Output is
;; redirected to "*Org PDF LaTeX Output*" buffer.
@ -2138,7 +2138,7 @@ Return PDF file name or an error if it couldn't be produced."
(replace-regexp-in-string
"%f" (shell-quote-argument texfile)
(replace-regexp-in-string
"%o" (shell-quote-argument out-dir) command)))
"%o" (shell-quote-argument out-dir) command t t) t t) t t)
outbuf))
org-e-latex-pdf-process)
;; Collect standard errors from output buffer.