mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-24 06:20:43 -08:00
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))
|
(let ((directories (list default-directory))
|
||||||
(default-directory default-directory)
|
(default-directory default-directory)
|
||||||
(ignore-files-regexp
|
(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)
|
(skip-count 0)
|
||||||
(fail-count 0)
|
(fail-count 0)
|
||||||
(file-count 0)
|
(file-count 0)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue