Remove some deprecated logic
This commit is contained in:
parent
d87a9a8073
commit
90d0bce3bd
1 changed files with 3 additions and 17 deletions
20
init.el
20
init.el
|
@ -71,11 +71,6 @@ by Prelude.")
|
|||
"This folder stores all the automatically generated save/history-files.")
|
||||
(defvar prelude-modules-file (expand-file-name "prelude-modules.el" prelude-personal-dir)
|
||||
"This file contains a list of modules that will be loaded by Prelude.")
|
||||
(defvar prelude-deprecated-modules-file
|
||||
(expand-file-name "prelude-modules.el" prelude-dir)
|
||||
(format "This file may contain a list of Prelude modules.
|
||||
|
||||
This is DEPRECATED, use %s instead." prelude-modules-file))
|
||||
|
||||
(unless (file-exists-p prelude-savefile-dir)
|
||||
(make-directory prelude-savefile-dir))
|
||||
|
@ -130,18 +125,9 @@ This is DEPRECATED, use %s instead." prelude-modules-file))
|
|||
|
||||
;; the modules
|
||||
(if (file-exists-p prelude-modules-file)
|
||||
(progn
|
||||
(load prelude-modules-file)
|
||||
(if (file-exists-p prelude-deprecated-modules-file)
|
||||
(message "Loading new modules configuration, ignoring DEPRECATED prelude-module.el")))
|
||||
(if (file-exists-p prelude-deprecated-modules-file)
|
||||
(progn
|
||||
(load prelude-deprecated-modules-file)
|
||||
(message (format "The use of %s is DEPRECATED! Use %s instead!"
|
||||
prelude-deprecated-modules-file
|
||||
prelude-modules-file)))
|
||||
(message "Missing modules file %s" prelude-modules-file)
|
||||
(message "You can get started by copying the bundled example file from sample/prelude-modules.el")))
|
||||
(load prelude-modules-file)
|
||||
(message "Missing modules file %s" prelude-modules-file)
|
||||
(message "You can get started by copying the bundled example file from sample/prelude-modules.el"))
|
||||
|
||||
;; config changes made through the customize UI will be stored here
|
||||
(setq custom-file (expand-file-name "custom.el" prelude-personal-dir))
|
||||
|
|
Loading…
Reference in a new issue