Explorar el Código

babel: check pdf file existence before deleting

Dan Davison hace 16 años
padre
commit
1e96482389
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      contrib/babel/lisp/langs/org-babel-latex.el

+ 1 - 1
contrib/babel/lisp/langs/org-babel-latex.el

@@ -69,7 +69,7 @@ called by `org-babel-execute-src-block'."
            body out-file org-format-latex-options in-buffer))
          ((string-match "\\.pdf$" out-file)
           (org-babel-latex-body-to-tex-file tex-file body pdfheight pdfwidth)
-          (delete-file out-file)
+          (when (file-exists-p out-file) (delete-file out-file))
           (rename-file (org-babel-latex-tex-to-pdf tex-file) out-file))
          ((string-match "\\.\\([^\\.]+\\)$" out-file)
           (error