Browse Source

babel: check pdf file existence before deleting

Dan Davison 15 years ago
parent
commit
1e96482389
1 changed files with 1 additions and 1 deletions
  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