From: André Spiegel Date: Fri, 9 Nov 2001 14:55:52 +0000 (+0000) Subject: Add John David Smith to credits. X-Git-Tag: ttn-vms-21-2-B4~18727 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fd828872b1ce37fa027d811ea052d16e0c9bdab0;p=emacs.git Add John David Smith to credits. (vc-clear-context): Fill obarray with 0, not nil. --- diff --git a/lisp/vc.el b/lisp/vc.el index c009e055e95..af1eb376b32 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -6,7 +6,7 @@ ;; Maintainer: Andre Spiegel ;; Keywords: tools -;; $Id: vc.el,v 1.316 2001/10/29 12:21:26 spiegel Exp $ +;; $Id: vc.el,v 1.317 2001/10/29 12:26:15 spiegel Exp $ ;; This file is part of GNU Emacs. @@ -36,6 +36,7 @@ ;; Martin Lorentzson ;; Dave Love ;; Stefan Monnier +;; John David Smith ;; Andre Spiegel ;; Richard Stallman ;; ttn@netcom.com @@ -715,7 +716,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)))