mirror of
https://github.com/larstvei/dot-emacs.git
synced 2025-04-19 13:50:12 +00:00
Bug in conditional loading of custom-file
This commit is contained in:
parent
56f6827eb3
commit
8cbecd9422
2
init.org
2
init.org
@ -165,7 +165,7 @@
|
|||||||
(let ((private-file (concat user-emacs-directory "private.el")))
|
(let ((private-file (concat user-emacs-directory "private.el")))
|
||||||
(when (file-exists-p private-file)
|
(when (file-exists-p private-file)
|
||||||
(load-file private-file))
|
(load-file private-file))
|
||||||
(when custom-file
|
(when (file-exists-p custom-file)
|
||||||
(load-file custom-file))
|
(load-file custom-file))
|
||||||
(server-start))))
|
(server-start))))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user