diff options
author | Dave Love <fx@gnu.org> | 2001-01-09 14:53:56 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2001-01-09 14:53:56 +0000 |
commit | f0e7c067eb2d0354a16ec9f565c9dac7ed69260a (patch) | |
tree | 196961223e4e3367bfff7cb1604b2bd6e7aa9db6 | |
parent | ee3275dffa01bb2242d90883de534f44acb669b1 (diff) | |
download | emacs-f0e7c067eb2d0354a16ec9f565c9dac7ed69260a.tar.gz |
(vc-rcs-header): Fix :type.
-rw-r--r-- | lisp/vc-rcs.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc-rcs.el b/lisp/vc-rcs.el index 0c29fd2672e..92676717cde 100644 --- a/lisp/vc-rcs.el +++ b/lisp/vc-rcs.el @@ -5,7 +5,7 @@ ;; Author: FSF (see vc.el for full credits) ;; Maintainer: Andre Spiegel <spiegel@gnu.org> -;; $Id: vc-rcs.el,v 1.14 2000/11/20 14:14:25 spiegel Exp $ +;; $Id: vc-rcs.el,v 1.15 2001/01/08 16:25:43 spiegel Exp $ ;; This file is part of GNU Emacs. @@ -79,7 +79,7 @@ These are passed to the checkout program by \\[vc-rcs-checkout]." (defcustom vc-rcs-header (or (cdr (assoc 'RCS vc-header-alist)) '("\$Id\$")) "*Header keywords to be inserted by `vc-insert-headers'." - :type 'string + :type '(repeat string) :version "21.1" :group 'vc) |