0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 19:37:52 +00:00

babel: Fix incorrect merge resolution from ba321d0e4

* lisp/org.el (org-babel-load-file): Fix type error introduced by
merge ba321d0e4.

Reported-by: Gregor Zattler <telegraph@gmx.net>
<https://lists.gnu.org/archive/html/emacs-orgmode/2019-01/msg00208.html>
This commit is contained in:
Kyle Meyer 2019-01-14 17:09:03 -05:00
parent ba321d0e44
commit baa98a4a6f

View file

@ -258,8 +258,9 @@ byte-compiled before it is loaded."
(interactive "fFile to load: \nP")
(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))
(unless (org-file-newer-than-p
tangled-file
(file-attribute-modification-time (file-attributes file)))
(org-babel-tangle-file file tangled-file "emacs-lisp"))
(if compile
(progn