[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/compat 22a40f3: Add make-directory-autoloads compatibil
From: |
ELPA Syncer |
Subject: |
[elpa] externals/compat 22a40f3: Add make-directory-autoloads compatibility function |
Date: |
Tue, 30 Nov 2021 10:57:16 -0500 (EST) |
branch: externals/compat
commit 22a40f3618b789cabb170bc4bfc5e1c6efd05583
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>
Add make-directory-autoloads compatibility function
---
compat-28.1.el | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/compat-28.1.el b/compat-28.1.el
index f44b144..8ed040f 100644
--- a/compat-28.1.el
+++ b/compat-28.1.el
@@ -617,5 +617,27 @@ itself will be used instead as the function argument."
'keymap button-map
'action callback))
+;;;; Defined in autoload.el
+
+(defvar generated-autoload-file)
+(compat-defun make-directory-autoloads (dir output-file)
+ "Update autoload definitions for Lisp files in the directories DIRS.
+DIR can be either a single directory or a list of
+directories. (The latter usage is discouraged.)
+
+The autoloads will be written to OUTPUT-FILE. If any Lisp file
+binds `generated-autoload-file' as a file-local variable, write
+its autoloads into the specified file instead.
+
+The function does NOT recursively descend into subdirectories of the
+directory or directories specified."
+ (let ((generated-autoload-file output-file))
+ ;; We intentionally don't sharp-quote
+ ;; `update-directory-autoloads', because it was deprecated in
+ ;; Emacs 28 and we don't want to trigger the byte compiler for
+ ;; newer versions.
+ (apply 'update-directory-autoloads
+ (if (listp dir) dir (list dir)))))
+
(provide 'compat-28.1)
;;; compat-28.1.el ends here
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [elpa] externals/compat 22a40f3: Add make-directory-autoloads compatibility function,
ELPA Syncer <=