Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
interactive runs of this test without that wrapper return nil
for comparison to the expected (cons 'org-id "generated-org-id".

2026-03-21 Mats Lidell <matsl@gnu.org>

* Makefile (HYPB_BYTE_COMP_ELN_LOAD_PATH): Add users eln-cache last in
native-comp-eln-load-path so that batch-byte+native-compile uses that
for storing the en-files.
(%.elc): Use HYPB_BYTE_COMP_ELN_LOAD_PATH.

2026-03-18 Mats Lidell <matsl@gnu.org>

* hactypes.el (link-to-org-id): Fix quote in docstring.
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -357,12 +357,16 @@ curr_dir = $(shell pwd)
ifeq ($(HYPB_NATIVE_COMP),yes)
HYPB_BYTE_COMP_INFO = $(HYPB_ELC_ELN)
HYPB_BYTE_COMP_FUNC = batch-byte+native-compile
HYPB_BYTE_COMP_ELN_LOAD_PATH = --eval "(add-to-list \
'native-comp-eln-load-path (expand-file-name \"eln-cache\" \
user-emacs-directory) t))"
else
HYPB_BYTE_COMP_INFO = $(HYPB_ELC)
HYPB_BYTE_COMP_FUNC = batch-byte-compile
endif
%.elc: %.el
$(HYPB_BYTE_COMP_INFO)$(EMACS) --batch --quick \
$(HYPB_BYTE_COMP_ELN_LOAD_PATH) \
--eval "(progn (add-to-list 'load-path \"$(curr_dir)\") (add-to-list 'load-path \"$(curr_dir)/kotl\"))" \
-l bytecomp ${HYPB_BIN_WARN} \
-f $(HYPB_BYTE_COMP_FUNC) $<
Expand Down
Loading