[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
emacs-30 8e37b537160: Skip *.dylib files in 'loaddefs-generate'
From: |
Eli Zaretskii |
Subject: |
emacs-30 8e37b537160: Skip *.dylib files in 'loaddefs-generate' |
Date: |
Fri, 25 Oct 2024 06:35:42 -0400 (EDT) |
branch: emacs-30
commit 8e37b537160c1560048ac53529ef09de7561963c
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>
Skip *.dylib files in 'loaddefs-generate'
* lisp/emacs-lisp/loaddefs-gen.el (loaddefs-generate): Add .dylib
to extensions of files that are skipped. (Bug#74001)
---
lisp/emacs-lisp/loaddefs-gen.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/emacs-lisp/loaddefs-gen.el b/lisp/emacs-lisp/loaddefs-gen.el
index 50e90cdf94c..bc075fd296d 100644
--- a/lisp/emacs-lisp/loaddefs-gen.el
+++ b/lisp/emacs-lisp/loaddefs-gen.el
@@ -591,7 +591,7 @@ instead of just updating them with the new/changed
autoloads."
;; we don't want to depend on whether Emacs was
;; built with or without modules support, nor
;; what is the suffix for the underlying OS.
- (unless (string-match "\\.\\(elc\\|so\\|dll\\)" suf)
+ (unless (string-match "\\.\\(elc\\|so\\|dll\\|dylib\\)"
suf)
(push suf tmp)))
(concat "\\`[^=.].*" (regexp-opt tmp t) "\\'")))
(files (apply #'nconc
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- emacs-30 8e37b537160: Skip *.dylib files in 'loaddefs-generate',
Eli Zaretskii <=