From: André Spiegel Date: Fri, 8 Sep 1995 20:38:53 +0000 (+0000) Subject: (vc-locking-user): Fixed wrong parentheses. X-Git-Tag: emacs-19.34~2849 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aadce164dacead8672d142c9e7162c103ade769e;p=emacs.git (vc-locking-user): Fixed wrong parentheses. --- diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index de088a6265c..1e4db196e84 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el @@ -625,11 +625,11 @@ For CVS, the full name of CVS/Entries is returned." ((eq (vc-backend file) 'SCCS) (or (vc-lock-from-permissions file) (vc-file-setprop file 'vc-locking-user - (vc-master-locking-user file)))))) + (vc-master-locking-user file))))) ;; convert a possible 'none value (setq locking-user (vc-file-getprop file 'vc-locking-user)) - (if (eq locking-user 'none) nil locking-user))) + (if (eq locking-user 'none) nil locking-user)))) ;;; properties to store current and recent version numbers