Merge from origin/emacs-29

1e8322bb26 Fix handling of 'byte-compile-ignore-files' when nil
This commit is contained in:
Jim Porter 2023-08-05 21:26:14 -07:00
commit 0a6a25320e

View file

@ -1976,7 +1976,9 @@ also be compiled."
(let ((directories (list default-directory))
(default-directory default-directory)
(ignore-files-regexp
(mapconcat #'identity byte-compile-ignore-files "\\|"))
(if byte-compile-ignore-files
(mapconcat #'identity byte-compile-ignore-files "\\|")
regexp-unmatchable))
(skip-count 0)
(fail-count 0)
(file-count 0)