diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-07-29 02:40:40 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-07-29 02:40:40 +0000 |
commit | 9bd06e95d6a17e10a80656b446ad5522870b121f (patch) | |
tree | 62833a307aff2d06c5eaec903048fd99dd1b5e84 /lisp/vc-hooks.el | |
parent | c82fbd0cfa1208a1d10eee8cc5fd6bfdcb4a0e96 (diff) | |
download | emacs-9bd06e95d6a17e10a80656b446ad5522870b121f.tar.gz |
Don't add to minor-mode-alist.
Diffstat (limited to 'lisp/vc-hooks.el')
-rw-r--r-- | lisp/vc-hooks.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index c90356a9c1a..1052892666c 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el @@ -5,7 +5,7 @@ ;; Author: FSF (see vc.el for full credits) ;; Maintainer: Andre Spiegel <spiegel@gnu.org> -;; $Id: vc-hooks.el,v 1.140 2002/07/16 17:42:57 spiegel Exp $ +;; $Id: vc-hooks.el,v 1.141 2002/07/19 13:26:11 spiegel Exp $ ;; This file is part of GNU Emacs. @@ -114,8 +114,9 @@ See also variable `vc-consult-headers'." (funcall vc-mistrust-permissions (vc-backend-subdirectory-name file))))) +;;; This is handled specially now. ;; Tell Emacs about this new kind of minor mode -(add-to-list 'minor-mode-alist '(vc-mode vc-mode)) +;; (add-to-list 'minor-mode-alist '(vc-mode vc-mode)) (make-variable-buffer-local 'vc-mode) (put 'vc-mode 'permanent-local t) |