Mercurial > emacs
changeset 13890:6e14467a9a9e
(vc-backend-checkin): Use vc-checkin-switches.
author | Erik Naggum <erik@naggum.no> |
---|---|
date | Fri, 29 Dec 1995 20:49:46 +0000 |
parents | 1c65a1e5f099 |
children | 0e813fc58516 |
files | lisp/vc.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/vc.el Fri Dec 29 20:00:39 1995 +0000 +++ b/lisp/vc.el Fri Dec 29 20:49:46 1995 +0000 @@ -1981,9 +1981,9 @@ ;; Change buffers to get local value of vc-checkin-switches. (set-buffer (or (get-file-buffer file) (current-buffer))) (let ((switches - (if (stringp vc-checkout-switches) - (list vc-checkout-switches) - vc-checkout-switches))) + (if (stringp vc-checkin-switches) + (list vc-checkin-switches) + vc-checkin-switches))) ;; Clear the master-properties. Do that here, not at the ;; end, because if the check-in fails we want them to get ;; re-computed before the next try.