diff options
| author | André Spiegel | 1995-09-08 20:38:53 +0000 |
|---|---|---|
| committer | André Spiegel | 1995-09-08 20:38:53 +0000 |
| commit | aadce164dacead8672d142c9e7162c103ade769e (patch) | |
| tree | d04e7c2c49a737cf03083c166afe91b255987eee | |
| parent | 6cfd24f9a58919f7dd5f7a54fff719c5ea1d7f0b (diff) | |
| download | emacs-aadce164dacead8672d142c9e7162c103ade769e.tar.gz emacs-aadce164dacead8672d142c9e7162c103ade769e.zip | |
(vc-locking-user): Fixed wrong parentheses.
| -rw-r--r-- | lisp/vc-hooks.el | 4 |
1 files changed, 2 insertions, 2 deletions
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." | |||
| 625 | ((eq (vc-backend file) 'SCCS) | 625 | ((eq (vc-backend file) 'SCCS) |
| 626 | (or (vc-lock-from-permissions file) | 626 | (or (vc-lock-from-permissions file) |
| 627 | (vc-file-setprop file 'vc-locking-user | 627 | (vc-file-setprop file 'vc-locking-user |
| 628 | (vc-master-locking-user file)))))) | 628 | (vc-master-locking-user file))))) |
| 629 | 629 | ||
| 630 | ;; convert a possible 'none value | 630 | ;; convert a possible 'none value |
| 631 | (setq locking-user (vc-file-getprop file 'vc-locking-user)) | 631 | (setq locking-user (vc-file-getprop file 'vc-locking-user)) |
| 632 | (if (eq locking-user 'none) nil locking-user))) | 632 | (if (eq locking-user 'none) nil locking-user)))) |
| 633 | 633 | ||
| 634 | ;;; properties to store current and recent version numbers | 634 | ;;; properties to store current and recent version numbers |
| 635 | 635 | ||