diff options
author | Eli Zaretskii <eliz@gnu.org> | 2024-10-27 08:23:05 -0400 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2024-10-27 08:23:05 -0400 |
commit | e4f490c8719bf3afda90f7968ccfb7f318a2e827 (patch) | |
tree | 49b5c0e526852153b5697f5b8577b5c8171e39a6 /lisp/emacs-lisp | |
parent | 4704dd39de0427466ca3585ab284b7302b0ef2d7 (diff) | |
parent | e0f964c16df4951e3d1ad6d43371ce2a09ede28c (diff) | |
download | emacs-e4f490c8719bf3afda90f7968ccfb7f318a2e827.tar.gz emacs-e4f490c8719bf3afda90f7968ccfb7f318a2e827.tar.bz2 emacs-e4f490c8719bf3afda90f7968ccfb7f318a2e827.zip |
Merge from origin/emacs-30
e0f964c16df ; * etc/AUTHORS: Update.
eb18f7288b3 ; * ChangeLog.4: Update.
8e37b537160 Skip *.dylib files in 'loaddefs-generate'
0d8d5f10ffc Highlight namespace name in "use" clause.
d3e98487d08 ; * lisp/loadup.el: Improve file abstract
1a91d37a21c ; * doc/lispref/control.texi (Conditionals): Fix markup.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/loaddefs-gen.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/loaddefs-gen.el b/lisp/emacs-lisp/loaddefs-gen.el index 1ac7aecdb66..6e843f741d8 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 |