]> git.eshelyaron.com Git - emacs.git/commitdiff
(custom-buffer-create-internal): In `emacs -q',
authorRichard M. Stallman <rms@gnu.org>
Fri, 22 Sep 2006 21:47:00 +0000 (21:47 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 22 Sep 2006 21:47:00 +0000 (21:47 +0000)
explain why Save is not available.

lisp/cus-edit.el

index 70552c604b7757bd81928670fd677fdc359315a4..82d2f147874da0fe8dc8097540a4e067cb4e19cf 100644 (file)
@@ -1521,13 +1521,18 @@ Otherwise use brackets."
            (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")