From 200f32b42b7d8c971313b23bd0ed523fea7655de Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Spiegel?= Date: Fri, 9 Nov 2001 15:09:58 +0000 Subject: [PATCH] (vc-clear-context): Fill obarray with 0, not nil. Suggested by Kalle Olavi Niemitalo . --- lisp/vc.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/vc.el b/lisp/vc.el index 6a20527d06f..9b5fd726858 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -6,7 +6,7 @@ ;; Maintainer: Andre Spiegel ;; 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))) -- 2.39.2