diff options
Diffstat (limited to 'scripts/export-to-html.el')
-rw-r--r-- | scripts/export-to-html.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/export-to-html.el b/scripts/export-to-html.el index 735414c..e2a7177 100644 --- a/scripts/export-to-html.el +++ b/scripts/export-to-html.el @@ -1,8 +1,8 @@ (unless (= 2 (length argv)) (error "Usage: emacs --script scripts/export-to-html <source-file> <output-file>")) -(let* ((source-filename (elt argv 0)) - (output-filename (elt argv 1)) +(let* ((source-filename (file-truename (elt argv 0))) + (output-filename (file-truename (elt argv 1))) (source-buffer (find-file source-filename)) (output-buffer (find-file output-filename)) (html-buffer (get-buffer-create "*Org HTML Export*")) |