replaced require with autoloads
This commit is contained in:
parent
d30e6710ec
commit
ed5d446e77
2 changed files with 16 additions and 3 deletions
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
@ -28,7 +28,15 @@
|
|||
|
||||
;;; 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue