diff options
author | André Spiegel <spiegel@gnu.org> | 2001-02-02 07:21:21 +0000 |
---|---|---|
committer | André Spiegel <spiegel@gnu.org> | 2001-02-02 07:21:21 +0000 |
commit | 54be33bc3fded82e2fef50b7ae40843103e3bdba (patch) | |
tree | 77fe4c018c58f0892005a66969c3cf1101807310 /lisp/vc-cvs.el | |
parent | 676a7cc97d92e55ed4fc7c1f0bb094f625c449b7 (diff) | |
download | emacs-54be33bc3fded82e2fef50b7ae40843103e3bdba.tar.gz |
Remove autoloads. Require vc when compiling.
Diffstat (limited to 'lisp/vc-cvs.el')
-rw-r--r-- | lisp/vc-cvs.el | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index 4ec9885d4ac..2ca04b4f9cd 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el @@ -1,11 +1,11 @@ ;;; vc-cvs.el --- non-resident support for CVS version-control -;; Copyright (C) 1995,98,99,2000 Free Software Foundation, Inc. +;; Copyright (C) 1995,98,99,2000,2001 Free Software Foundation, Inc. ;; Author: FSF (see vc.el for full credits) ;; Maintainer: Andre Spiegel <spiegel@gnu.org> -;; $Id: vc-cvs.el,v 1.18 2001/01/29 19:12:40 sds Exp $ +;; $Id: vc-cvs.el,v 1.19 2001/02/01 15:10:16 spiegel Exp $ ;; This file is part of GNU Emacs. @@ -29,15 +29,7 @@ ;;; Code: (eval-when-compile - ;; keep the compiler happy - ;; note that there is another option: (require 'vc) - (defvar vc-register-switches) ; defined in "vc.el", used in `vc-cvs-register' - (defvar vc-checkin-switches) ; defined in "vc.el", used in `vc-cvs-checkin' - (defvar vc-checkout-switches) ; defined in "vc.el", used in `vc-cvs-checkout' - (autoload 'vc-diff-switches-list "vc") ; used in `vc-cvs-diff' - (autoload 'vc-do-command "vc") ; used all over the place - (autoload 'vc-trunk-p "vc") ; used in `vc-cvs-checkin' - (autoload 'vc-resynch-buffer "vc")) ; used in `vc-cvs-retrieve-snapshot' + (require 'vc)) ;;; ;;; Customization options |