[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master fd5fe11211: Don't break autoload generation of `left-margin' isn'
From: |
Lars Ingebrigtsen |
Subject: |
master fd5fe11211: Don't break autoload generation of `left-margin' isn't zero |
Date: |
Mon, 21 Mar 2022 14:16:33 -0400 (EDT) |
branch: master
commit fd5fe11211a469c42fb7142f5a26f577e8ff0010
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>
Don't break autoload generation of `left-margin' isn't zero
* lisp/emacs-lisp/autoload.el (make-directory-autoloads): Fix
autoload generation breakage is left-margin isn't zero (bug#54491).
---
lisp/emacs-lisp/autoload.el | 3 +++
1 file changed, 3 insertions(+)
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el
index d0bf342b84..1e4b2c14a0 100644
--- a/lisp/emacs-lisp/autoload.el
+++ b/lisp/emacs-lisp/autoload.el
@@ -1108,6 +1108,9 @@ directory or directories specified."
;; Files with no autoload cookies or whose autoloads go to other
;; files because of file-local autoload-generated-file settings.
(no-autoloads nil)
+ ;; Ensure that we don't do odd things when putting the doc
+ ;; strings into the autoloads file.
+ (left-margin 0)
(autoload-modified-buffers nil)
(output-time
(and (file-exists-p output-file)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master fd5fe11211: Don't break autoload generation of `left-margin' isn't zero,
Lars Ingebrigtsen <=