summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2000-10-24 11:27:41 +0000
committerDave Love <fx@gnu.org>2000-10-24 11:27:41 +0000
commitbc35d341cab38b8dce45d04cd25a6dfcd8b03d8c (patch)
tree958f0436480f4c1a5e1a306e49a647d2bf164b31
parent1946f901c62487b306c98f47a428b10271b68b8a (diff)
downloademacs-bc35d341cab38b8dce45d04cd25a6dfcd8b03d8c.tar.gz
emacs-bc35d341cab38b8dce45d04cd25a6dfcd8b03d8c.tar.bz2
emacs-bc35d341cab38b8dce45d04cd25a6dfcd8b03d8c.zip
(log-edit): Add :version and a :group for vc.
-rw-r--r--lisp/log-edit.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/log-edit.el b/lisp/log-edit.el
index 0f8dd68d214..bc766d0226e 100644
--- a/lisp/log-edit.el
+++ b/lisp/log-edit.el
@@ -5,7 +5,7 @@
;; Author: Stefan Monnier <monnier@cs.yale.edu>
;; Keywords: pcl-cvs cvs commit log
;; Version: $Name: $
-;; Revision: $Id: log-edit.el,v 1.6 2000/06/02 02:28:39 monnier Exp $
+;; Revision: $Id: log-edit.el,v 1.7 2000/06/02 23:03:31 monnier Exp $
;; This file is part of GNU Emacs.
@@ -44,8 +44,10 @@
;;;;
(defgroup log-edit nil
- "Major mode for editing commit messages for PCL-CVS."
+ "Major mode for editing RCS and CVS commit messages."
:group 'pcl-cvs
+ :group 'vc ; It's used by VC.
+ :version "21.1"
:prefix "log-edit-")
;; compiler pacifiers
@@ -358,7 +360,7 @@ If we are between sub-paragraphs, return the previous subparagraph."
(end-of-line)
(if (search-backward "*" nil t)
(list (progn (beginning-of-line) (point))
- (progn
+ (progn
(forward-line 1)
(if (re-search-forward "^[ \t]*[\n*]" nil t)
(match-beginning 0)
@@ -399,7 +401,7 @@ The return value looks like this:
where LOGBUFFER is the name of the ChangeLog buffer, and each
\(ENTRYSTART . ENTRYEND\) pair is a buffer region."
(save-excursion
- (let ((changelog-file-name
+ (let ((changelog-file-name
(let ((default-directory
(file-name-directory (expand-file-name file))))
;; `find-change-log' uses `change-log-default-name' if set