Nicholas Vollmer

Results 282 comments of Nicholas Vollmer

Please try evaluating the test case from above in your \*scratch\* buffer: https://github.com/radian-software/straight.el/issues/1035#issuecomment-1367081185 When it finishes running the \*straight-bug-report-process\* buffer should pop up. Please copy the entire buffer contents of...

The test appears to have passed. What does your init file currently look like?

@bramadams: See https://www.gnu.org/software/emacs/manual/html_node/elisp/Compiling-Macros.html You'd likely have to wrap some forms in `eval-and-compile` or `eval-when-compile` to get that working. Honestly, I wouldn't recommend compiling your init file. It's more trouble than...

See: https://github.com/radian-software/straight.el/issues/701 This should really be fixed upstream. There is a an emacs-devel thread linked in that issue. It would be good to make some noise there as this bug...

> there's a bug open upstream Yes, but it has not seen any activity in quite some time. It will not get fixed if more people don't chime in on...

please try evaluating the following test case and sharing the results of the `*straight-but-report-process*` buffer when it finishes: Test Case ```emacs-lisp (straight-bug-report :user-dir "straight.1022" :post-bootstrap (straight-use-package 'consult) (message "%s" (describe-function...

please try the reproduction recipe in the emacs devel thread here and let me know if you are able to reproduce the same issue: https://lists.gnu.org/r/bug-gnu-emacs/2021-12/msg00376.html

The built-in version is loaded with the following test case: Test Case ```emacs-lisp (straight-bug-report :post-bootstrap (straight-use-package '(org :type built-in)) (straight-use-package 'elfeed-org) (org-version nil 'full 'message)) ``` - Test run at:...

> I hoped one of the benefits of straight was that the order of my packages didn't matter. The order of installation matters due to dependencies. > Is there some...