# HG changeset patch # User Richard M. Stallman # Date 1158961620 0 # Node ID 7b4e5468a485e91c429dc62d5e960d1ee4414a50 # Parent 0b12c2c3fdb165ccd756c10975e1ad706afec51e (custom-buffer-create-internal): In `emacs -q', explain why Save is not available. diff -r 0b12c2c3fdb1 -r 7b4e5468a485 lisp/cus-edit.el --- a/lisp/cus-edit.el Fri Sep 22 21:35:30 2006 +0000 +++ b/lisp/cus-edit.el Fri Sep 22 21:47:00 2006 +0000 @@ -1521,13 +1521,18 @@ (widget-insert description)) (widget-insert (format ". %s buttons; type RET or click mouse-1 to actuate one. -Editing a setting changes only the text in the buffer. -Use the setting's State button to set it or save changes in it. -Saving a change normally works by editing your Emacs init file. -See " +Editing a setting changes only the text in the buffer." (if custom-raised-buttons "`Raised' text indicates" "Square brackets indicate"))) + (if init-file-user + (widget-insert " +Use the setting's State button to set it or save changes in it. +Saving a change normally works by editing your Emacs init file.") + (widget-insert " +\nSince you started Emacs with `-q', which inhibits use of the +Emacs init file, you cannot save settings into the Emacs init file.")) + (widget-insert "\nSee ") (widget-create 'custom-manual :tag "Custom file" "(emacs)Saving Customizations")