Mercurial > emacs
changeset 7016:af3a2472ad48
(vc-backend-diff): Test of cmp was backwards.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 22 Apr 1994 04:31:27 +0000 |
parents | 41b90d7dd228 |
children | 6884e6e907c9 |
files | lisp/vc.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/vc.el Thu Apr 21 21:26:47 1994 +0000 +++ b/lisp/vc.el Fri Apr 22 04:31:27 1994 +0000 @@ -1651,7 +1651,7 @@ (status (apply 'vc-do-command 2 command file options))) ;; Some RCS versions don't understand "--brief"; work around this. (if (eq status 2) - (apply 'vc-do-command 1 command file (if cmp options (cdr options))) + (apply 'vc-do-command 1 command file (if cmp (cdr options) options)) status))) (defun vc-check-headers ()