diff options
| author | Markus Rost | 2002-11-18 20:56:45 +0000 |
|---|---|---|
| committer | Markus Rost | 2002-11-18 20:56:45 +0000 |
| commit | 00821115989538d621259b34a8ebec06bd5dcc71 (patch) | |
| tree | 60df45e6011ce0dd5f5ab061d90b2beb888cee32 /lisp | |
| parent | 0040b8760ab097cb0fd84dac84ecce59ddc112a2 (diff) | |
| download | emacs-00821115989538d621259b34a8ebec06bd5dcc71.tar.gz emacs-00821115989538d621259b34a8ebec06bd5dcc71.zip | |
(cvs-minor-mode, cvs-mode-commit-hook): Add group.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/pcvs.el | 8 |
2 files changed, 9 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 081565ff18e..a02707c152d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -9,6 +9,8 @@ | |||
| 9 | 9 | ||
| 10 | 2002-11-18 Markus Rost <rost@math.ohio-state.edu> | 10 | 2002-11-18 Markus Rost <rost@math.ohio-state.edu> |
| 11 | 11 | ||
| 12 | * pcvs.el (cvs-minor-mode, cvs-mode-commit-hook): Add group. | ||
| 13 | |||
| 12 | * textmodes/refill.el (defgroup refill): New group. | 14 | * textmodes/refill.el (defgroup refill): New group. |
| 13 | 15 | ||
| 14 | * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Add group. | 16 | * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Add group. |
| @@ -22,6 +24,8 @@ | |||
| 22 | 24 | ||
| 23 | * reveal.el (global-reveal-mode): Add group. | 25 | * reveal.el (global-reveal-mode): Add group. |
| 24 | 26 | ||
| 27 | * bookmark.el (bookmark-menu-length): Fix group name. | ||
| 28 | |||
| 25 | 2002-11-17 Richard M. Stallman <rms@gnu.org> | 29 | 2002-11-17 Richard M. Stallman <rms@gnu.org> |
| 26 | 30 | ||
| 27 | * mail/rmail.el (rmail-ignored-headers): Add more headers. | 31 | * mail/rmail.el (rmail-ignored-headers): Add more headers. |
| @@ -58,10 +62,6 @@ | |||
| 58 | 62 | ||
| 59 | * language/thai.el (thai-tis620): Make it safe. | 63 | * language/thai.el (thai-tis620): Make it safe. |
| 60 | 64 | ||
| 61 | 2002-11-18 Markus Rost <rost@math.ohio-state.edu> | ||
| 62 | |||
| 63 | * bookmark.el (bookmark-menu-length): Fix group name. | ||
| 64 | |||
| 65 | 2002-11-17 Markus Rost <rost@math.ohio-state.edu> | 65 | 2002-11-17 Markus Rost <rost@math.ohio-state.edu> |
| 66 | 66 | ||
| 67 | * speedbar.el (defgroup speedbar): Use group 'etags instead of | 67 | * speedbar.el (defgroup speedbar): Use group 'etags instead of |
diff --git a/lisp/pcvs.el b/lisp/pcvs.el index 1e00d9d8e46..2aa31f6c53b 100644 --- a/lisp/pcvs.el +++ b/lisp/pcvs.el | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | ;; (Jari Aalto+mail.emacs) jari.aalto@poboxes.com | 14 | ;; (Jari Aalto+mail.emacs) jari.aalto@poboxes.com |
| 15 | ;; Maintainer: (Stefan Monnier) monnier+lists/cvs/pcl@flint.cs.yale.edu | 15 | ;; Maintainer: (Stefan Monnier) monnier+lists/cvs/pcl@flint.cs.yale.edu |
| 16 | ;; Keywords: CVS, version control, release management | 16 | ;; Keywords: CVS, version control, release management |
| 17 | ;; Revision: $Id: pcvs.el,v 1.43 2002/10/26 22:27:15 kfstorm Exp $ | 17 | ;; Revision: $Id: pcvs.el,v 1.44 2002/11/13 20:19:38 monnier Exp $ |
| 18 | 18 | ||
| 19 | ;; This file is part of GNU Emacs. | 19 | ;; This file is part of GNU Emacs. |
| 20 | 20 | ||
| @@ -338,7 +338,8 @@ the primay since reading the primary can deactivate it." | |||
| 338 | "This mode is used for buffers related to a main *cvs* buffer. | 338 | "This mode is used for buffers related to a main *cvs* buffer. |
| 339 | All the `cvs-mode' buffer operations are simply rebound under | 339 | All the `cvs-mode' buffer operations are simply rebound under |
| 340 | the \\[cvs-mode-map] prefix." | 340 | the \\[cvs-mode-map] prefix." |
| 341 | nil " CVS") | 341 | nil " CVS" |
| 342 | :group 'pcl-cvs) | ||
| 342 | (put 'cvs-minor-mode 'permanent-local t) | 343 | (put 'cvs-minor-mode 'permanent-local t) |
| 343 | 344 | ||
| 344 | 345 | ||
| @@ -1367,7 +1368,8 @@ If FILE is non-nil, directory entries won't be selected." | |||
| 1367 | (defcustom cvs-mode-commit-hook nil | 1368 | (defcustom cvs-mode-commit-hook nil |
| 1368 | "Hook run after setting up the commit buffer." | 1369 | "Hook run after setting up the commit buffer." |
| 1369 | :type 'hook | 1370 | :type 'hook |
| 1370 | :options '(cvs-mode-diff)) | 1371 | :options '(cvs-mode-diff) |
| 1372 | :group 'pcl-cvs) | ||
| 1371 | 1373 | ||
| 1372 | (defun cvs-mode-commit (setup) | 1374 | (defun cvs-mode-commit (setup) |
| 1373 | "Check in all marked files, or the current file. | 1375 | "Check in all marked files, or the current file. |