Merge from origin/emacs-29
1e8322bb26
Fix handling of 'byte-compile-ignore-files' when nil
This commit is contained in:
commit
0a6a25320e
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue