diff lisp/vc.el @ 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 3a0db3b2366c
children 4fd40bd394fe
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 ()