Mercurial > emacs
changeset 15336:8d23d63f1eee
(vc-cancel-version): Fix paren error.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 05 Jun 1996 17:57:26 +0000 |
parents | cd47abda6c84 |
children | cf1e6f4dd2b0 |
files | lisp/vc.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/vc.el Wed Jun 05 17:19:36 1996 +0000 +++ b/lisp/vc.el Wed Jun 05 17:57:26 1996 +0000 @@ -1618,8 +1618,8 @@ (pop-to-buffer vc-parent-buffer)) (cond ((not (vc-registered (buffer-file-name))) - (vc-registration-error (buffer-file-name)) - (eq (vc-backend (buffer-file-name)) 'CVS) + (vc-registration-error (buffer-file-name))) + ((eq (vc-backend (buffer-file-name)) 'CVS) (error "Unchecking files under CVS is dangerous and not supported in VC")) ((vc-locking-user (buffer-file-name)) (error "This version is locked; use vc-revert-buffer to discard changes"))