Mercurial > emacs
changeset 48264:63fc09a69c40
(vc-sccs-registered): Handle the autoload cookie so that the
definition is found by `find-function-search-for-symbol' and etags.
author | Markus Rost <rost@math.uni-bielefeld.de> |
---|---|
date | Tue, 12 Nov 2002 19:50:54 +0000 |
parents | b05233e8524d |
children | 9883a3b65e3c |
files | lisp/vc-sccs.el |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/vc-sccs.el Tue Nov 12 19:46:47 2002 +0000 +++ b/lisp/vc-sccs.el Tue Nov 12 19:50:54 2002 +0000 @@ -5,7 +5,7 @@ ;; Author: FSF (see vc.el for full credits) ;; Maintainer: Andre Spiegel <spiegel@gnu.org> -;; $Id: vc-sccs.el,v 1.16 2002/10/08 15:35:03 monnier Exp $ +;; $Id: vc-sccs.el,v 1.17 2002/10/08 20:24:21 monnier Exp $ ;; This file is part of GNU Emacs. @@ -88,8 +88,9 @@ ;;; State-querying functions ;;; -;;;###autoload -(progn (defun vc-sccs-registered (f) (vc-default-registered 'SCCS f))) +;;; The definition should be at beginning of line (for Help and etags). +;;;###autoload(defun vc-sccs-registered (f) (vc-default-registered 'SCCS f)) +(defun vc-sccs-registered (f) (vc-default-registered 'SCCS f)) (defun vc-sccs-state (file) "SCCS-specific function to compute the version control state."