Skip to content

Commit 0a6a253

Browse files
committed
Merge from origin/emacs-29
1e8322b Fix handling of 'byte-compile-ignore-files' when nil
2 parents 1bf92d9 + 1e8322b commit 0a6a253

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lisp/emacs-lisp/bytecomp.el

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1976,7 +1976,9 @@ also be compiled."
19761976
(let ((directories (list default-directory))
19771977
(default-directory default-directory)
19781978
(ignore-files-regexp
1979-
(mapconcat #'identity byte-compile-ignore-files "\\|"))
1979+
(if byte-compile-ignore-files
1980+
(mapconcat #'identity byte-compile-ignore-files "\\|")
1981+
regexp-unmatchable))
19801982
(skip-count 0)
19811983
(fail-count 0)
19821984
(file-count 0)

0 commit comments

Comments
 (0)