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

Merge branch 'maint'

This commit is contained in:
Bastien 2020-02-14 08:38:03 +01:00
commit fb3ec41dac

View file

@ -218,12 +218,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\\|elisp"))
(if compile
(progn