diff options
| author | André Spiegel | 2002-11-13 12:38:20 +0000 |
|---|---|---|
| committer | André Spiegel | 2002-11-13 12:38:20 +0000 |
| commit | 736e0fd11b1cc937a55e2fcc808a776d83ad4a24 (patch) | |
| tree | eee2c7c1f787f1ff01c59609c0cc606eddbaf69c | |
| parent | 9ef337379b5d39e2c394685ec294ed0ae0dd430a (diff) | |
| download | emacs-736e0fd11b1cc937a55e2fcc808a776d83ad4a24.tar.gz emacs-736e0fd11b1cc937a55e2fcc808a776d83ad4a24.zip | |
(vc-rcs-registered): Improve comment.
| -rw-r--r-- | lisp/vc-rcs.el | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/vc-rcs.el b/lisp/vc-rcs.el index 5cd00931d78..290d59687ac 100644 --- a/lisp/vc-rcs.el +++ b/lisp/vc-rcs.el | |||
| @@ -5,7 +5,7 @@ | |||
| 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-rcs.el,v 1.29 2002/10/08 20:23:36 monnier Exp $ | 8 | ;; $Id: vc-rcs.el,v 1.30 2002/11/12 19:46:47 rost Exp $ |
| 9 | 9 | ||
| 10 | ;; This file is part of GNU Emacs. | 10 | ;; This file is part of GNU Emacs. |
| 11 | 11 | ||
| @@ -99,8 +99,12 @@ For a description of possible values, see `vc-check-master-templates'." | |||
| 99 | ;;; State-querying functions | 99 | ;;; State-querying functions |
| 100 | ;;; | 100 | ;;; |
| 101 | 101 | ||
| 102 | ;;; The definition should be at beginning of line (for Help and etags). | 102 | ;;; The autoload cookie below places vc-rcs-registered directly into |
| 103 | ;;;###autoload(defun vc-rcs-registered (f) (vc-default-registered 'RCS f)) | 103 | ;;; loaddefs.el, so that vc-rcs.el does not need to be loaded for |
| 104 | ;;; every file that is visited. The definition is repeated below | ||
| 105 | ;;; so that Help and etags can find it. | ||
| 106 | |||
| 107 | ;;;###autoload (defun vc-rcs-registered (f) (vc-default-registered 'RCS f)) | ||
| 104 | (defun vc-rcs-registered (f) (vc-default-registered 'RCS f)) | 108 | (defun vc-rcs-registered (f) (vc-default-registered 'RCS f)) |
| 105 | 109 | ||
| 106 | (defun vc-rcs-state (file) | 110 | (defun vc-rcs-state (file) |