summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2010-08-01 10:08:35 +0200
committerBastien Guerry <bzg@altern.org>2010-08-01 10:08:35 +0200
commit3642e441bc8938387f0ed2ae30ea66f396e859ae (patch)
treea0f56b0284c201fe52434797c31e3262c1491814
parent8221861f725966b153a34277e700520f537c9202 (diff)
downloadorg-mode-3642e441bc8938387f0ed2ae30ea66f396e859ae.tar.gz
Fix org-format-latex: don't throw an error if dir exists.
From: Alexandre Passos <alexandre.tp@gmail.com> > I was editing an org document on a server earlier today, remotely > using tramp, and continuously exporting it to html. When I added > LaTeX, it exported once and then not anymore, failing because it > couldn't create a directory anymore. So I found out that patching > org-export-latex to pass a "t" parameter to org-make-directory fixes > this, and it continues to work perfectly. This is the modified version > of that function, if anyone else is interested in this constrained > case. The only change I made was right under the "make sure directory > exists" comment.
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 19b28a3..d2c1fdf 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -15868,7 +15868,7 @@ Some of the options can be changed using the variable
(goto-char beg)
(unless checkdir ; make sure the directory exists
(setq checkdir t)
- (or (file-directory-p todir) (make-directory todir)))
+ (or (file-directory-p todir) (make-directory todir t)))
(unless executables-checked
(org-check-external-command