# HG changeset patch # User Richard M. Stallman # Date 850335924 0 # Node ID 19eb807123053e57978a1a4f8bf2b0564ceb799e # Parent b1e4c26fc85c34abcb7bac82ea95f35be9794ef0 Don't load .custom if -q was used. diff -r b1e4c26fc85c -r 19eb80712305 lisp/=custom.el --- a/lisp/=custom.el Wed Dec 11 01:29:00 1996 +0000 +++ b/lisp/=custom.el Wed Dec 11 20:25:24 1996 +0000 @@ -2463,8 +2463,9 @@ (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)