1
0
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:
Richard M. Stallman 1996-12-11 20:25:24 +00:00
parent 7bb250dacc
commit 79062c6c2f

View File

@ -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)