diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-09-22 11:57:30 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-09-22 11:57:30 +0000 |
commit | 0bc587562887a0d6ddf1ec3a422f27d9afaab9f2 (patch) | |
tree | 62957acab95c99f45572228ebe6dc50cd0055f7c /lisp/vc-rcs.el | |
parent | 13f93deebaa77d555c3b8fd9a3cbc39b8574a8eb (diff) | |
download | emacs-0bc587562887a0d6ddf1ec3a422f27d9afaab9f2.tar.gz |
(toplevel): Require `vc' when compiling.
Diffstat (limited to 'lisp/vc-rcs.el')
-rw-r--r-- | lisp/vc-rcs.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/vc-rcs.el b/lisp/vc-rcs.el index 09accd148a9..a1d0707b1b2 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.5 2000/09/21 13:21:41 spiegel Exp $ +;; $Id: vc-rcs.el,v 1.6 2000/09/22 07:48:08 spiegel Exp $ ;; This file is part of GNU Emacs. @@ -28,6 +28,9 @@ ;;; Code: +(eval-when-compile + (require 'vc)) ;for macros defined there + (defcustom vc-rcs-release nil "*The release number of your RCS installation, as a string. If nil, VC itself computes this value when it is first needed." |