before saving abbrevs if `save-abbrevs' has the value `silently'.
+2002-01-18 Juanma Barranquero <lektu@terra.es>
+
+ * files.el (save-abbrevs, save-some-buffers): Don't ask the user
+ before saving abbrevs if `save-abbrevs' has the value `silently'.
+
2002-01-16 Richard M. Stallman <rms@gnu.org>
* net/net-utils.el (network-connection-service-abbrev-alist):
(defcustom save-abbrevs nil
"*Non-nil means save word abbrevs too when files are saved.
+If `silently', don't ask the user before saving.
Loading an abbrev file sets this to t."
- :type 'boolean
+ :type '(choice (const t) (const nil) (const silently))
:group 'abbrev)
(defcustom find-file-run-dired t
(and save-abbrevs abbrevs-changed
(progn
(if (or arg
+ (eq save-abbrevs 'silently)
(y-or-n-p (format "Save abbrevs in %s? "
abbrev-file-name)))
(write-abbrev-file nil))