changeset 2103:19834ffbffc4

[xemacs-hg @ 2004-05-29 23:57:41 by adrian] [R21.421.5] [PATCH] xemacs-21.5: Fix assert in make install caused <he0h35d1.fsf@smtpmail.t-online.de>
author adrian
date Sat, 29 May 2004 23:57:41 +0000
parents 7b3675ff333e
children 2cd4a76c6f96
files lisp/ChangeLog lisp/files.el
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Sat May 29 21:50:28 2004 +0000
+++ b/lisp/ChangeLog	Sat May 29 23:57:41 2004 +0000
@@ -1,3 +1,8 @@
+2003-12-03  Adrian Aichner  <adrian@xemacs.org>
+
+	* files.el (delete-old-versions): Avoid going interactive during
+	make install when environment variable VERSION_CONTROL is set.
+
 2004-04-21  Sven Grundmann  <sven@hellerhof.de>
 
 	* list-mode.el (display-completion-list): Fixed completion list was
--- a/lisp/files.el	Sat May 29 21:50:28 2004 +0000
+++ b/lisp/files.el	Sat May 29 23:57:41 2004 +0000
@@ -279,7 +279,7 @@
 ;   :group 'backup
 ;   :group 'dired)
 
-(defcustom delete-old-versions nil
+(defcustom delete-old-versions (when noninteractive 'leave)
   "*If t, delete excess backup versions silently.
 If nil, ask confirmation.  Any other value prevents any trimming."
   :type '(choice (const :tag "Delete" t)