]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-clear-context): Fill obarray with 0, not nil.
authorAndré Spiegel <spiegel@gnu.org>
Fri, 9 Nov 2001 15:09:58 +0000 (15:09 +0000)
committerAndré Spiegel <spiegel@gnu.org>
Fri, 9 Nov 2001 15:09:58 +0000 (15:09 +0000)
Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.

lisp/vc.el

index 6a20527d06f6f8695ad9cab24481f9bbb3aa8c32..9b5fd7268581bca8429d76fa7f502e383e6a5467 100644 (file)
@@ -6,7 +6,7 @@
 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
 ;; Keywords: tools
 
-;; $Id: vc.el,v 1.310 2001/09/22 20:04:21 monnier Exp $
+;; $Id$
 
 ;; This file is part of GNU Emacs.
 
@@ -683,7 +683,7 @@ The keys are \(BUFFER . BACKEND\).  See also `vc-annotate-get-backend'.")
 (defun vc-clear-context ()
   "Clear all cached file properties and the comment ring."
   (interactive)
-  (fillarray vc-file-prop-obarray nil)
+  (fillarray vc-file-prop-obarray 0)
   ;; Note: there is potential for minor lossage here if there is an open
   ;; log buffer with a nonzero local value of vc-comment-ring-index.
   (setq vc-comment-ring (make-ring vc-maximum-comment-ring-size)))