changeset 23832:da77f7e4d272

(vc-rcs-release): Fix Type. (vc-sccs-release): Fix Type. (vc-cvs-release): Fix Type.
author Markus Rost <rost@math.uni-bielefeld.de>
date Tue, 08 Dec 1998 16:04:52 +0000
parents 67267b9864ed
children 088714863cc9
files lisp/vc.el
diffstat 1 files changed, 7 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/vc.el	Tue Dec 08 15:48:11 1998 +0000
+++ b/lisp/vc.el	Tue Dec 08 16:04:52 1998 +0000
@@ -5,7 +5,7 @@
 ;; Author:     Eric S. Raymond <esr@snark.thyrsus.com>
 ;; Maintainer: Andre Spiegel <spiegel@inf.fu-berlin.de>
 
-;; $Id: vc.el,v 1.239 1998/11/04 15:09:38 spiegel Exp spiegel $
+;; $Id: vc.el,v 1.240 1998/12/02 13:34:59 spiegel Exp rost $
 
 ;; This file is part of GNU Emacs.
 
@@ -291,21 +291,24 @@
   "*The release number of your RCS installation, as a string.
 If nil, VC itself computes this value when it is first needed."
   :type '(choice (const :tag "Auto" nil)
-		 string)
+		 string 
+		 (const :tag "Unknown" unknown))
   :group 'vc)
 
 (defcustom vc-sccs-release nil
   "*The release number of your SCCS installation, as a string.
 If nil, VC itself computes this value when it is first needed."
   :type '(choice (const :tag "Auto" nil)
-		 string)
+		 string 
+		 (const :tag "Unknown" unknown))
   :group 'vc)
 
 (defcustom vc-cvs-release nil
   "*The release number of your CVS installation, as a string.
 If nil, VC itself computes this value when it is first needed."
   :type '(choice (const :tag "Auto" nil)
-		 string)
+		 string 
+		 (const :tag "Unknown" unknown))
   :group 'vc)
 
 ;; Variables the user doesn't need to know about.