]> git.eshelyaron.com Git - emacs.git/commitdiff
replaced require with autoloads
authorSam Steingold <sds@gnu.org>
Mon, 29 Jan 2001 19:12:40 +0000 (19:12 +0000)
committerSam Steingold <sds@gnu.org>
Mon, 29 Jan 2001 19:12:40 +0000 (19:12 +0000)
lisp/ChangeLog
lisp/vc-cvs.el

index a91f6e69116372648780a519ba086077f411a4ff..c5811322eec5bc132ed90eb91c82bc61d01b88f3 100644 (file)
@@ -1,3 +1,8 @@
+2001-01-29  Sam Steingold  <sds@gnu.org>
+
+       * vc-cvs.el: replaced (require 'vc) with a bunch of
+       `autoload' statements.
+
 2001-01-29  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * files.el (confirm-kill-emacs): Doc fix.
@@ -23,7 +28,7 @@
 
 2001-01-29  Gerd Moellmann  <gerd@gnu.org>
 
-       * menu-bar.el (menu-bar-files-menu): Add menu items for 
+       * menu-bar.el (menu-bar-files-menu): Add menu items for
        Postscript printing in black and white.
 
        * mail/rmail.el (rmail-ignored-headers): Add X-Sign, X-BeenThere,
index 915a434a5271d865c18ab9ff8a9ae57851d0c215..756dd91f73c9a92de29b2171d40a77f010909680 100644 (file)
@@ -5,7 +5,7 @@
 ;; Author:      FSF (see vc.el for full credits)
 ;; Maintainer:  Andre Spiegel <spiegel@gnu.org>
 
-;; $Id: vc-cvs.el,v 1.16 2001/01/25 16:36:48 sds Exp $
+;; $Id: vc-cvs.el,v 1.17 2001/01/25 21:02:37 sds Exp $
 
 ;; This file is part of GNU Emacs.
 
 
 ;;; Code:
 
-(require 'vc)
+(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-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'
 
 ;;;
 ;;; Customization options