From 29f44df758d182873c9241f3cb202968b410f0bd Mon Sep 17 00:00:00 2001 From: Bastien Date: Fri, 14 Feb 2020 08:36:54 +0100 Subject: [PATCH] Fix fa24cd541 again --- lisp/org.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 09b1d54cb..403c7bd95 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -216,12 +216,12 @@ and then loads the resulting file using `load-file'. With optional prefix argument COMPILE, the tangled Emacs Lisp file is byte-compiled before it is loaded." (interactive "fFile to load: \nP") - (let* ((file (file-truename file)) - (tangled-file (concat (file-name-sans-extension file) ".el"))) + (let ((tangled-file (concat (file-name-sans-extension file) ".el"))) ;; Tangle only if the Org file is newer than the Elisp file. (unless (org-file-newer-than-p tangled-file - (file-attribute-modification-time (file-attributes file))) + (file-attribute-modification-time + (file-attributes (file-truename file)))) (org-babel-tangle-file file tangled-file "emacs-lisp")) (if compile (progn