GNU bug report logs -
#63625
29.0.90; package-install inserts package directory into load-path twice.
Previous Next
Reported by: todd smith <toddasmith <at> mac.com>
Date: Sun, 21 May 2023 07:33:01 UTC
Severity: normal
Tags: fixed
Found in version 29.0.90
Fixed in version 29.1
Done: Robert Pluim <rpluim <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
> `file-name-directory' will return nil for names with no slashes in
> them, but I donʼt know if thatʼs possible here.
I think `load-file-name` is always absolute, so I think we should be
safe, but that's the question, yes.
> I *think* we can use `when-let*' here, since subr.el is preloaded.
Please don't, it's too recently introduced IMO and such generated files
may be loaded in older Emacsen.
> Stefan> (package--reload-previously-loaded pkg-desc))
> Stefan> (with-demoted-errors "Error loading autoloads: %s"
> Stefan> (load (package--autoloads-file-name pkg-desc) nil t))
> Stefan> - (add-to-list 'load-path (directory-file-name pkg-dir)))
> Stefan> + ;; FIXME: Since 2013 (commit 4fac34cee97a), the autoload files take
> Stefan> + ;; care of changing the `load-path', so maybe it's time to
> Stefan> + ;; remove this fallback code?
> Stefan> + (unless (or (member (file-name-as-directory pkg-dir) load-path)
> Stefan> + (member (directory-file-name pkg-dir) load-path))
> Stefan> + (add-to-list 'load-path pkg-dir)))
Maybe we can have that patch in emacs-29 and remove the code altogether
on `master`?
Stefan
This bug report was last modified 2 years and 56 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.