ox-latex: Do not message "PDF file produced" for fragments
* lisp/ox-latex.el (org-latex-compile): Do not message "PDF file produced" for fragments.
This commit is contained in:
parent
6b3aa71061
commit
919722a6a6
|
@ -3163,19 +3163,20 @@ Return PDF file name or an error if it couldn't be produced."
|
|||
(error (format "PDF file %s wasn't produced" pdffile))
|
||||
;; Else remove log files, when specified, and signal end of
|
||||
;; process to user, along with any error encountered.
|
||||
(when (and (not snippet) org-latex-remove-logfiles)
|
||||
(dolist (file (directory-files
|
||||
out-dir t
|
||||
(concat (regexp-quote base-name)
|
||||
"\\(?:\\.[0-9]+\\)?"
|
||||
"\\."
|
||||
(regexp-opt org-latex-logfiles-extensions))))
|
||||
(delete-file file)))
|
||||
(message (concat "PDF file produced"
|
||||
(cond
|
||||
((eq warnings 'error) " with errors.")
|
||||
(warnings (concat " with warnings: " warnings))
|
||||
(t ".")))))
|
||||
(unless snippet
|
||||
(when org-latex-remove-logfiles
|
||||
(dolist (file (directory-files
|
||||
out-dir t
|
||||
(concat (regexp-quote base-name)
|
||||
"\\(?:\\.[0-9]+\\)?"
|
||||
"\\."
|
||||
(regexp-opt org-latex-logfiles-extensions))))
|
||||
(delete-file file)))
|
||||
(message (concat "PDF file produced"
|
||||
(cond
|
||||
((eq warnings 'error) " with errors.")
|
||||
(warnings (concat " with warnings: " warnings))
|
||||
(t "."))))))
|
||||
;; Return output file name.
|
||||
pdffile))))
|
||||
|
||||
|
|
Loading…
Reference in New Issue