diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-07 18:51:15 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-07 18:51:15 +0200 |
commit | 7815ebd25f77ffdc61ac0af4a9eb0a6cadc85e2b (patch) | |
tree | ab83af408bf7f14c5071933f1ef28f95a09bf07c | |
parent | 5ab66afa34a11839238505054b5e4a2f5da69957 (diff) | |
download | emacs-7815ebd25f77ffdc61ac0af4a9eb0a6cadc85e2b.tar.gz emacs-7815ebd25f77ffdc61ac0af4a9eb0a6cadc85e2b.tar.bz2 emacs-7815ebd25f77ffdc61ac0af4a9eb0a6cadc85e2b.zip |
Fix loaddefs-generate--rubric recorded name
* lisp/emacs-lisp/loaddefs-gen.el (loaddefs-generate--rubric): Fix
the name that's recorded in the file -- this is only used by
loaddefs-gen now, I think.
-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 a6a4baffbab..5280941cfcd 100644 --- a/lisp/emacs-lisp/loaddefs-gen.el +++ b/lisp/emacs-lisp/loaddefs-gen.el @@ -466,7 +466,7 @@ FILE's name." (let ((lp (and (equal type "package") (setq type "autoloads")))) (with-temp-buffer (generate-lisp-file-heading - file 'loaddefs-generate--rubric + file 'loaddefs-generate :title (concat "automatically extracted " (or type "autoloads")) :commentary (and (string-match "/lisp/loaddefs\\.el\\'" file) "This file will be copied to ldefs-boot.el and checked in periodically.")) |