mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-25 10:47:00 +00:00
(cvs-minor-mode, cvs-mode-commit-hook): Add group.
This commit is contained in:
parent
0040b8760a
commit
0082111598
@ -9,6 +9,8 @@
|
||||
|
||||
2002-11-18 Markus Rost <rost@math.ohio-state.edu>
|
||||
|
||||
* pcvs.el (cvs-minor-mode, cvs-mode-commit-hook): Add group.
|
||||
|
||||
* textmodes/refill.el (defgroup refill): New group.
|
||||
|
||||
* emacs-lisp/checkdoc.el (checkdoc-minor-mode): Add group.
|
||||
@ -22,6 +24,8 @@
|
||||
|
||||
* reveal.el (global-reveal-mode): Add group.
|
||||
|
||||
* bookmark.el (bookmark-menu-length): Fix group name.
|
||||
|
||||
2002-11-17 Richard M. Stallman <rms@gnu.org>
|
||||
|
||||
* mail/rmail.el (rmail-ignored-headers): Add more headers.
|
||||
@ -58,10 +62,6 @@
|
||||
|
||||
* language/thai.el (thai-tis620): Make it safe.
|
||||
|
||||
2002-11-18 Markus Rost <rost@math.ohio-state.edu>
|
||||
|
||||
* bookmark.el (bookmark-menu-length): Fix group name.
|
||||
|
||||
2002-11-17 Markus Rost <rost@math.ohio-state.edu>
|
||||
|
||||
* speedbar.el (defgroup speedbar): Use group 'etags instead of
|
||||
|
@ -14,7 +14,7 @@
|
||||
;; (Jari Aalto+mail.emacs) jari.aalto@poboxes.com
|
||||
;; Maintainer: (Stefan Monnier) monnier+lists/cvs/pcl@flint.cs.yale.edu
|
||||
;; Keywords: CVS, version control, release management
|
||||
;; Revision: $Id: pcvs.el,v 1.43 2002/10/26 22:27:15 kfstorm Exp $
|
||||
;; Revision: $Id: pcvs.el,v 1.44 2002/11/13 20:19:38 monnier Exp $
|
||||
|
||||
;; This file is part of GNU Emacs.
|
||||
|
||||
@ -338,7 +338,8 @@ the primay since reading the primary can deactivate it."
|
||||
"This mode is used for buffers related to a main *cvs* buffer.
|
||||
All the `cvs-mode' buffer operations are simply rebound under
|
||||
the \\[cvs-mode-map] prefix."
|
||||
nil " CVS")
|
||||
nil " CVS"
|
||||
:group 'pcl-cvs)
|
||||
(put 'cvs-minor-mode 'permanent-local t)
|
||||
|
||||
|
||||
@ -1367,7 +1368,8 @@ If FILE is non-nil, directory entries won't be selected."
|
||||
(defcustom cvs-mode-commit-hook nil
|
||||
"Hook run after setting up the commit buffer."
|
||||
:type 'hook
|
||||
:options '(cvs-mode-diff))
|
||||
:options '(cvs-mode-diff)
|
||||
:group 'pcl-cvs)
|
||||
|
||||
(defun cvs-mode-commit (setup)
|
||||
"Check in all marked files, or the current file.
|
||||
|
Loading…
Reference in New Issue
Block a user