]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-dired-mode): Make dired-after-readin-hook a local hook, not a local variable.
authorAndré Spiegel <spiegel@gnu.org>
Sun, 5 Apr 1998 18:54:35 +0000 (18:54 +0000)
committerAndré Spiegel <spiegel@gnu.org>
Sun, 5 Apr 1998 18:54:35 +0000 (18:54 +0000)
lisp/vc.el

index 4751b0de090f35326e2c9e41abfa95eaaf18ffa1..151cee9a6b5094bbbb384c1b4ed1e98f713f7b76 100644 (file)
@@ -5,7 +5,7 @@
 ;; Author:     Eric S. Raymond <esr@snark.thyrsus.com>
 ;; Maintainer: Andre Spiegel <spiegel@inf.fu-berlin.de>
 
-;; $Id: vc.el,v 1.217 1998/04/05 18:43:15 spiegel Exp spiegel $
+;; $Id: vc.el,v 1.218 1998/04/05 18:45:06 spiegel Exp spiegel $
 
 ;; This file is part of GNU Emacs.
 
@@ -1603,8 +1603,8 @@ is redefined as the version control prefix, so that you can type
 the file named in the current Dired buffer line.  `vv' invokes
 `vc-next-action' on this file, or on all files currently marked.
 There is a special command, `*l', to mark all files currently locked."
-  (make-local-variable 'dired-after-readin-hook)
-  (add-hook 'dired-after-readin-hook 'vc-dired-hook)
+  (make-local-hook 'dired-after-readin-hook)
+  (add-hook 'dired-after-readin-hook 'vc-dired-hook nil t)
   (setq vc-dired-mode t))
 
 (define-key vc-dired-mode-map "\C-xv" vc-prefix-map)