From: Richard M. Stallman Date: Fri, 22 Apr 1994 04:31:27 +0000 (+0000) Subject: (vc-backend-diff): Test of cmp was backwards. X-Git-Tag: emacs-19.34~8837 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cec574b950bc8c8c8d6002ac15e6048fe70c69c6;p=emacs.git (vc-backend-diff): Test of cmp was backwards. --- diff --git a/lisp/vc.el b/lisp/vc.el index 7e7e6412139..b023f632c1c 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -1651,7 +1651,7 @@ Return nil if there is no such person." (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 ()