emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/vc-hooks.el


From: Andre Spiegel
Subject: [Emacs-diffs] Changes to emacs/lisp/vc-hooks.el
Date: Fri, 09 Nov 2001 10:11:14 -0500

Index: emacs/lisp/vc-hooks.el
diff -u emacs/lisp/vc-hooks.el:1.134 emacs/lisp/vc-hooks.el:1.135
--- emacs/lisp/vc-hooks.el:1.134        Mon Sep 24 12:36:14 2001
+++ emacs/lisp/vc-hooks.el      Fri Nov  9 09:58:21 2001
@@ -5,7 +5,7 @@
 ;; Author:     FSF (see vc.el for full credits)
 ;; Maintainer: Andre Spiegel <address@hidden>
 
-;; $Id: vc-hooks.el,v 1.134 2001/09/24 16:36:14 monnier Exp $
+;; $Id: vc-hooks.el,v 1.135 2001/11/09 14:58:21 spiegel Exp $
 
 ;; This file is part of GNU Emacs.
 
@@ -129,7 +129,7 @@
 \\{vc-prefix-map}")
 
 (defmacro vc-error-occurred (&rest body)
-  (list 'condition-case nil (cons 'progn (append body '(nil))) '(error t)))
+  `(condition-case nil (progn ,@body nil) (error t)))
 
 ;; We need a notion of per-file properties because the version
 ;; control state of a file is expensive to derive --- we compute
@@ -137,7 +137,7 @@
 ;; during any subsequent VC operations, and forget them when
 ;; the buffer is killed.
 
-(defvar vc-file-prop-obarray (make-vector 16 0)
+(defvar vc-file-prop-obarray (make-vector 17 0)
   "Obarray for per-file properties.")
 
 (defvar vc-touched-properties nil)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]