Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

straight--build-autoloads: Ensure output symlink isn't resolved (#701) #945

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions straight.el
Original file line number Diff line number Diff line change
Expand Up @@ -5136,6 +5136,13 @@ modifies the build folder, not the original repository."
;; Apparently fixes a bug in Emacs 27, see
;; <https://github.com/radian-software/straight.el/issues/434>.
(debug-on-error nil)
;; In Emacs 28.1, if this is non-nil,
;; `make-directory-autoloads' resolves symlinks in its
;; second argument but not the first, and files cannot
;; be loaded correctly. Unfortunately this bug crept
;; into the release. See
;; <https://github.com/raxod502/straight.el/issues/701>
(find-file-visit-truename nil)
;; Non-nil interferes with autoload generation in Emacs < 29, see
;; <https://github.com/radian-software/straight.el/issues/904>.
(left-margin 0))
Expand Down