mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-26 10:49:33 +00:00
Don't load .custom if -q was used.
This commit is contained in:
parent
7bb250dacc
commit
79062c6c2f
@ -2463,8 +2463,9 @@ Face used for customization fields while they are being edited.")
|
||||
(not (string-match "XEmacs" emacs-version)))
|
||||
(custom-category-put 'custom-hidden-properties intangible t)
|
||||
|
||||
(if (file-readable-p custom-file)
|
||||
(load-file custom-file))
|
||||
(and init-file-user ; Don't load any init file if -q was used.
|
||||
(file-readable-p custom-file)
|
||||
(load-file custom-file))
|
||||
|
||||
(provide 'custom)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user