aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/vc-sccs.el7
2 files changed, 10 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d20ad6927b9..6c4c68b73c8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,11 @@
12002-11-12 Markus Rost <rost@math.ohio-state.edu> 12002-11-12 Markus Rost <rost@math.ohio-state.edu>
2 2
3 * vc-rcs.el (vc-rcs-registered): Handle the autoload cookie so
4 that the definition is found by `find-function-search-for-symbol'
5 and etags.
6
7 * vc-sccs.el (vc-sccs-registered): Ditto.
8
3 * emulation/edt.el (defgroup edt): Arrange that definition starts 9 * emulation/edt.el (defgroup edt): Arrange that definition starts
4 at beginning of line. 10 at beginning of line.
5 11
diff --git a/lisp/vc-sccs.el b/lisp/vc-sccs.el
index eddc990a4f4..c5f2d660a79 100644
--- a/lisp/vc-sccs.el
+++ b/lisp/vc-sccs.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-sccs.el,v 1.16 2002/10/08 15:35:03 monnier Exp $ 8;; $Id: vc-sccs.el,v 1.17 2002/10/08 20:24:21 monnier Exp $
9 9
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11 11
@@ -88,8 +88,9 @@ For a description of possible values, see `vc-check-master-templates'."
88;;; State-querying functions 88;;; State-querying functions
89;;; 89;;;
90 90
91;;;###autoload 91;;; The definition should be at beginning of line (for Help and etags).
92(progn (defun vc-sccs-registered (f) (vc-default-registered 'SCCS f))) 92;;;###autoload(defun vc-sccs-registered (f) (vc-default-registered 'SCCS f))
93(defun vc-sccs-registered (f) (vc-default-registered 'SCCS f))
93 94
94(defun vc-sccs-state (file) 95(defun vc-sccs-state (file)
95 "SCCS-specific function to compute the version control state." 96 "SCCS-specific function to compute the version control state."