diff options
author | Sébastien Delafond <sdelafond@gmail.com> | 2016-12-28 09:22:34 +0100 |
---|---|---|
committer | Sébastien Delafond <sdelafond@gmail.com> | 2016-12-28 09:22:34 +0100 |
commit | 22e20457f23e72d264227a96e6f4888cd967f028 (patch) | |
tree | 88537844e5a562fae7dfdfa1f0e51af4e7b90703 /lisp/org.el | |
parent | 3c1786756e434dae5960b1eed5cf1f84e4bd3a07 (diff) |
Imported Upstream version 9.0.3
Diffstat (limited to 'lisp/org.el')
-rw-r--r-- | lisp/org.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/org.el b/lisp/org.el index 08b3f3a..68befe3 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -21157,8 +21157,8 @@ This command does many different things, depending on context: ;; Limit to supported contexts. '(babel-call clock dynamic-block footnote-definition footnote-reference inline-babel-call inline-src-block - item keyword node-property paragraph plain-list - property-drawer radio-target src-block + inlinetask item keyword node-property paragraph + plain-list property-drawer radio-target src-block statistics-cookie table table-cell table-row timestamp) t)) @@ -22773,7 +22773,7 @@ be set to a buffer or a buffer name. `shell-command' then uses it for output." (let* ((base-name (file-name-base source)) (full-name (file-truename source)) - (out-dir (file-name-directory source)) + (out-dir (or (file-name-directory source) "./")) (output (expand-file-name (concat base-name "." ext) out-dir)) (time (current-time)) (err-msg (if (stringp err-msg) (concat ". " err-msg) ""))) |