(vc-rcs-registered): Handle the autoload cookie so that the definition

is found by `find-function-search-for-symbol' and etags.
This commit is contained in:
Markus Rost 2002-11-12 19:46:47 +00:00
parent 4e7a42d2f5
commit 0d2c82c731

View file

@ -5,7 +5,7 @@
;; Author: FSF (see vc.el for full credits)
;; Maintainer: Andre Spiegel <spiegel@gnu.org>
;; $Id: vc-rcs.el,v 1.28 2002/10/08 15:33:18 monnier Exp $
;; $Id: vc-rcs.el,v 1.29 2002/10/08 20:23:36 monnier Exp $
;; This file is part of GNU Emacs.
@ -99,8 +99,9 @@ For a description of possible values, see `vc-check-master-templates'."
;;; State-querying functions
;;;
;;;###autoload
(progn (defun vc-rcs-registered (f) (vc-default-registered 'RCS f)))
;;; The definition should be at beginning of line (for Help and etags).
;;;###autoload(defun vc-rcs-registered (f) (vc-default-registered 'RCS f))
(defun vc-rcs-registered (f) (vc-default-registered 'RCS f))
(defun vc-rcs-state (file)
"Implementation of `vc-state' for RCS."