bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#49009: 27.1.90; files loaded with -l flag does not use file-truename


From: ctarbide
Subject: bug#49009: 27.1.90; files loaded with -l flag does not use file-truename as required by eval-after-load
Date: Sun, 13 Jun 2021 23:56:35 +0200 (CEST)

Consider:

emacs -nw -Q -batch -L "`pwd`" -l test.el

if the test.el file above is in a non-true path, e.g. a parent dir is a
symlink, and test.el has an eval-after-load for itself, the eval-after-load
form will not be evaluated, the reason is that startup.el does not use
file-truename while loading file, the change below solved the issue:

-  (file-ex (expand-file-name file)))
+  (file-ex (file-truename (expand-file-name file))))

http://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/startup.el#n2503


reply via email to

[Prev in Thread] Current Thread [Next in Thread]