comparison lisp/vc-cvs.el @ 35839:7349d241e60b

Remove autoloads. Require vc when compiling.
author André Spiegel <spiegel@gnu.org>
date Fri, 02 Feb 2001 07:21:21 +0000
parents 6b1ff979e045
children 22fd463447c3
comparison
equal deleted inserted replaced
35838:53eebdb81828 35839:7349d241e60b
1 ;;; vc-cvs.el --- non-resident support for CVS version-control 1 ;;; vc-cvs.el --- non-resident support for CVS version-control
2 2
3 ;; Copyright (C) 1995,98,99,2000 Free Software Foundation, Inc. 3 ;; Copyright (C) 1995,98,99,2000,2001 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.18 2001/01/29 19:12:40 sds Exp $ 8 ;; $Id: vc-cvs.el,v 1.19 2001/02/01 15:10:16 spiegel 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
27 ;;; Commentary: 27 ;;; Commentary:
28 28
29 ;;; Code: 29 ;;; Code:
30 30
31 (eval-when-compile 31 (eval-when-compile
32 ;; keep the compiler happy 32 (require 'vc))
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-diff-switches-list "vc") ; used in `vc-cvs-diff'
38 (autoload 'vc-do-command "vc") ; used all over the place
39 (autoload 'vc-trunk-p "vc") ; used in `vc-cvs-checkin'
40 (autoload 'vc-resynch-buffer "vc")) ; used in `vc-cvs-retrieve-snapshot'
41 33
42 ;;; 34 ;;;
43 ;;; Customization options 35 ;;; Customization options
44 ;;; 36 ;;;
45 37