emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/files.el


From: Eli Zaretskii
Subject: [Emacs-diffs] Changes to emacs/lisp/files.el
Date: Tue, 04 Dec 2001 13:25:58 -0500

Index: emacs/lisp/files.el
diff -c emacs/lisp/files.el:1.540 emacs/lisp/files.el:1.541
*** emacs/lisp/files.el:1.540   Sun Dec  2 19:02:52 2001
--- emacs/lisp/files.el Tue Dec  4 13:25:57 2001
***************
*** 312,319 ****
    :version "21.1")
  
  (defcustom save-abbrevs t
!   "*Non-nil means save word abbrevs too when files are saved."
!   :type 'boolean
    :group 'abbrev)
  
  (defcustom find-file-run-dired t
--- 312,320 ----
    :version "21.1")
  
  (defcustom save-abbrevs t
!   "*Non-nil means save word abbrevs too when files are saved.
! If `silently', don't ask the user before saving."
!   :type '(choice (const t) (const nil) (const silently))
    :group 'abbrev)
  
  (defcustom find-file-run-dired t
***************
*** 2804,2809 ****
--- 2805,2811 ----
            (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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]