diff options
| author | Stefan Kangas | 2019-11-02 04:32:03 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2019-11-02 04:33:32 +0100 |
| commit | 4ac6c9b6683d6a5c705efd9d99688de3b6ddf5b7 (patch) | |
| tree | 0b5261cd9e54a1034695a68fa0ec7d5c61771867 | |
| parent | 7cde03484b1622ba9e5acc54f49c96b18bb79d98 (diff) | |
| download | emacs-4ac6c9b6683d6a5c705efd9d99688de3b6ddf5b7.tar.gz emacs-4ac6c9b6683d6a5c705efd9d99688de3b6ddf5b7.zip | |
; * etc/NEWS: Fix my previous change for package-initialize.
| -rw-r--r-- | etc/NEWS | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -179,7 +179,7 @@ into the init file when Emacs was started. This call can now safely | |||
| 179 | be removed. Alternatively, if you want to ensure that your init file | 179 | be removed. Alternatively, if you want to ensure that your init file |
| 180 | is still compatible with earlier versions of Emacs, change it to: | 180 | is still compatible with earlier versions of Emacs, change it to: |
| 181 | 181 | ||
| 182 | (when (version< emacs-version "27.1") | 182 | (when (< emacs-major-version 27) |
| 183 | (package-initialize)) | 183 | (package-initialize)) |
| 184 | 184 | ||
| 185 | However, if your init file changes the values of 'package-load-list' | 185 | However, if your init file changes the values of 'package-load-list' |