diff options
| -rw-r--r-- | lisp/custom.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/custom.el b/lisp/custom.el index 910ef02b187..e747264583c 100644 --- a/lisp/custom.el +++ b/lisp/custom.el | |||
| @@ -2463,8 +2463,9 @@ Face used for customization fields while they are being edited.") | |||
| 2463 | (not (string-match "XEmacs" emacs-version))) | 2463 | (not (string-match "XEmacs" emacs-version))) |
| 2464 | (custom-category-put 'custom-hidden-properties intangible t) | 2464 | (custom-category-put 'custom-hidden-properties intangible t) |
| 2465 | 2465 | ||
| 2466 | (if (file-readable-p custom-file) | 2466 | (and init-file-user ; Don't load any init file if -q was used. |
| 2467 | (load-file custom-file)) | 2467 | (file-readable-p custom-file) |
| 2468 | (load-file custom-file)) | ||
| 2468 | 2469 | ||
| 2469 | (provide 'custom) | 2470 | (provide 'custom) |
| 2470 | 2471 | ||