diff options
| author | Glenn Morris | 2016-02-29 21:10:42 -0800 |
|---|---|---|
| committer | Glenn Morris | 2016-02-29 21:10:42 -0800 |
| commit | 2855e5df28db359979e103b7f6d2e718b042f5c2 (patch) | |
| tree | e0f07837f7ea9b858d657ed1f13720450d96c855 | |
| parent | 8c1503e41bb65e7d75d006c4650f5114fdc6eed2 (diff) | |
| download | emacs-2855e5df28db359979e103b7f6d2e718b042f5c2.tar.gz emacs-2855e5df28db359979e103b7f6d2e718b042f5c2.zip | |
* lisp/emacs-lisp/autoload.el (autoload-timestamps):
Experiment with setting to nil.
; * etc/NEWS: Mention this.
| -rw-r--r-- | etc/NEWS | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/autoload.el | 2 |
2 files changed, 3 insertions, 1 deletions
| @@ -122,6 +122,8 @@ Put your function on `window-size-change-functions' instead. | |||
| 122 | 122 | ||
| 123 | ** Autoload files can be generated without timestamps, | 123 | ** Autoload files can be generated without timestamps, |
| 124 | by setting `autoload-timestamps' to nil. | 124 | by setting `autoload-timestamps' to nil. |
| 125 | FIXME As an experiment, nil is the current default. | ||
| 126 | If no insurmountable problems before next release, it can stay that way. | ||
| 125 | 127 | ||
| 126 | ** `ert-with-function-mocked' of 'ert-x package allows mocking of functions | 128 | ** `ert-with-function-mocked' of 'ert-x package allows mocking of functions |
| 127 | in unit tests. | 129 | in unit tests. |
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index 8f2b5337ea7..1b06fb6a51d 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el | |||
| @@ -87,7 +87,7 @@ that text will be copied verbatim to `generated-autoload-file'.") | |||
| 87 | (defconst generate-autoload-section-continuation ";;;;;; " | 87 | (defconst generate-autoload-section-continuation ";;;;;; " |
| 88 | "String to add on each continuation of the section header form.") | 88 | "String to add on each continuation of the section header form.") |
| 89 | 89 | ||
| 90 | (defvar autoload-timestamps t | 90 | (defvar autoload-timestamps nil ; experimental, see bug#22213 |
| 91 | "Non-nil means insert a timestamp for each input file into the output. | 91 | "Non-nil means insert a timestamp for each input file into the output. |
| 92 | We use these in incremental updates of the output file to decide | 92 | We use these in incremental updates of the output file to decide |
| 93 | if we need to rescan an input file. If you set this to nil, | 93 | if we need to rescan an input file. If you set this to nil, |