You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It may be there for testing purposes, but it seems to be persistent—I have (use-package ob-hy) in my init file (and I have the package installed via MELPA), and Customize reports that org-id-locations-file has changed outside Customize to ~/.emacs.d/elpa/ob-hy-1.0.1/.test-org-id-locations (the original value was ~/.emacs.d/.org-id-locations). This must throw a monkey wrench into org-id tracking!
My best guess as to how to fix this: instead of the defconst, ensure that every time a function being called needs the test value of org-id-locations-file, it’s wrapped in a let-block:
In
test-ob-hy.el
:It may be there for testing purposes, but it seems to be persistent—I have
(use-package ob-hy)
in my init file (and I have the package installed via MELPA), and Customize reports thatorg-id-locations-file
has changed outside Customize to~/.emacs.d/elpa/ob-hy-1.0.1/.test-org-id-locations
(the original value was~/.emacs.d/.org-id-locations
). This must throw a monkey wrench into org-id tracking!My best guess as to how to fix this: instead of the
defconst
, ensure that every time a function being called needs the test value oforg-id-locations-file
, it’s wrapped in a let-block:The text was updated successfully, but these errors were encountered: