Re: Bug: Symlink handling in org-babel-load-file

2020-02-14 Thread Bastien
Hi Ricky, thanks for the double-check, I've now apply the change as you suggest. Best, -- Bastien

Re: Bug: Symlink handling in org-babel-load-file

2020-02-13 Thread ricky saurav
Hey Bastien, After this patch, org-mode loads the most updated config. A minor issue that I have is that this patch creates config.el in my dotfiles directory, instead of ~/.emacs.d/config.el ,since ~/.emacs.d/config.org is a symlink to ~/dotfiles/config.org. The behaviour in org-9.1.5(emacs 26.3),

Re: Bug: Symlink handling in org-babel-load-file

2020-02-12 Thread Bastien
Hi Ricky, thanks for reporting this. Can you try this patch and confirm it solves your issue? diff --git a/lisp/org.el b/lisp/org.el index f3823284c..ef2c7b9e6 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -218,7 +218,8 @@ and then loads the resulting file using `load-file'. With optional pref

Bug: Symlink handling in org-babel-load-file

2020-01-30 Thread Ricky Saurav
The org-babel-load-file behavior for symlinks seems to have changed between org-9.1.5(emacs 26.3) and org-9.3(emacs 27.0.6). The change seems to be that org-9.3 gets the modification time for the file, which org-9.1.5 resolves the file in case the orginial file is a symlink before doing the same.