comparison lisp/vc-cvs.el @ 35702:395d188bb71d

replaced require with autoloads
author Sam Steingold <sds@gnu.org>
date Mon, 29 Jan 2001 19:12:40 +0000
parents 498bcc1e7c00
children 6b1ff979e045
comparison
equal deleted inserted replaced
35701:96fb197c6aff 35702:395d188bb71d
3 ;; Copyright (C) 1995,98,99,2000 Free Software Foundation, Inc. 3 ;; Copyright (C) 1995,98,99,2000 Free Software Foundation, Inc.
4 4
5 ;; Author: FSF (see vc.el for full credits) 5 ;; Author: FSF (see vc.el for full credits)
6 ;; Maintainer: Andre Spiegel <spiegel@gnu.org> 6 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
7 7
8 ;; $Id: vc-cvs.el,v 1.16 2001/01/25 16:36:48 sds Exp $ 8 ;; $Id: vc-cvs.el,v 1.17 2001/01/25 21:02:37 sds Exp $
9 9
10 ;; This file is part of GNU Emacs. 10 ;; This file is part of GNU Emacs.
11 11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify 12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by 13 ;; it under the terms of the GNU General Public License as published by
26 26
27 ;;; Commentary: 27 ;;; Commentary:
28 28
29 ;;; Code: 29 ;;; Code:
30 30
31 (require 'vc) 31 (eval-when-compile
32 ;; keep the compiler happy
33 ;; note that there is another option: (require 'vc)
34 (defvar vc-register-switches) ; defined in "vc.el", used in `vc-cvs-register'
35 (defvar vc-checkin-switches) ; defined in "vc.el", used in `vc-cvs-checkin'
36 (defvar vc-checkout-switches) ; defined in "vc.el", used in `vc-cvs-checkout'
37 (autoload 'vc-do-command "vc") ; used all over the place
38 (autoload 'vc-trunk-p "vc") ; used in `vc-cvs-checkin'
39 (autoload 'vc-resynch-buffer "vc")) ; used in `vc-cvs-retrieve-snapshot'
32 40
33 ;;; 41 ;;;
34 ;;; Customization options 42 ;;; Customization options
35 ;;; 43 ;;;
36 44