From cec574b950bc8c8c8d6002ac15e6048fe70c69c6 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 22 Apr 1994 04:31:27 +0000 Subject: [PATCH] (vc-backend-diff): Test of cmp was backwards. --- lisp/vc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 () -- 2.39.5