mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-27 07:37:33 +00:00
(vc-sccs-registered): Handle the autoload cookie so that the
definition is found by `find-function-search-for-symbol' and etags.
This commit is contained in:
parent
0d2c82c731
commit
af65391bb9
@ -1,5 +1,11 @@
|
||||
2002-11-12 Markus Rost <rost@math.ohio-state.edu>
|
||||
|
||||
* vc-rcs.el (vc-rcs-registered): Handle the autoload cookie so
|
||||
that the definition is found by `find-function-search-for-symbol'
|
||||
and etags.
|
||||
|
||||
* vc-sccs.el (vc-sccs-registered): Ditto.
|
||||
|
||||
* emulation/edt.el (defgroup edt): Arrange that definition starts
|
||||
at beginning of line.
|
||||
|
||||
|
@ -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 @@ For a description of possible values, see `vc-check-master-templates'."
|
||||
;;; 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."
|
||||
|
Loading…
Reference in New Issue
Block a user