diff options
| author | Lars Ingebrigtsen | 2022-03-21 19:15:55 +0100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2022-03-21 19:15:55 +0100 |
| commit | fd5fe11211a469c42fb7142f5a26f577e8ff0010 (patch) | |
| tree | 1c26acd51e33ad0e100a3dfb27a98a31b976ddfa | |
| parent | d74cd0cf1f96e256c479599939efacd11600c0c8 (diff) | |
| download | emacs-fd5fe11211a469c42fb7142f5a26f577e8ff0010.tar.gz emacs-fd5fe11211a469c42fb7142f5a26f577e8ff0010.zip | |
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).
| -rw-r--r-- | lisp/emacs-lisp/autoload.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index d0bf342b842..1e4b2c14a01 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el | |||
| @@ -1108,6 +1108,9 @@ directory or directories specified." | |||
| 1108 | ;; Files with no autoload cookies or whose autoloads go to other | 1108 | ;; Files with no autoload cookies or whose autoloads go to other |
| 1109 | ;; files because of file-local autoload-generated-file settings. | 1109 | ;; files because of file-local autoload-generated-file settings. |
| 1110 | (no-autoloads nil) | 1110 | (no-autoloads nil) |
| 1111 | ;; Ensure that we don't do odd things when putting the doc | ||
| 1112 | ;; strings into the autoloads file. | ||
| 1113 | (left-margin 0) | ||
| 1111 | (autoload-modified-buffers nil) | 1114 | (autoload-modified-buffers nil) |
| 1112 | (output-time | 1115 | (output-time |
| 1113 | (and (file-exists-p output-file) | 1116 | (and (file-exists-p output-file) |