aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-22 04:31:27 +0000
committerRichard M. Stallman1994-04-22 04:31:27 +0000
commitcec574b950bc8c8c8d6002ac15e6048fe70c69c6 (patch)
tree48cad500f0f6e81e2c7f8008f867508493316a14
parentbdd2009598f11697716b9223046bedea3a448254 (diff)
downloademacs-cec574b950bc8c8c8d6002ac15e6048fe70c69c6.tar.gz
emacs-cec574b950bc8c8c8d6002ac15e6048fe70c69c6.zip
(vc-backend-diff): Test of cmp was backwards.
-rw-r--r--lisp/vc.el2
1 files changed, 1 insertions, 1 deletions
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."
1651 (status (apply 'vc-do-command 2 command file options))) 1651 (status (apply 'vc-do-command 2 command file options)))
1652 ;; Some RCS versions don't understand "--brief"; work around this. 1652 ;; Some RCS versions don't understand "--brief"; work around this.
1653 (if (eq status 2) 1653 (if (eq status 2)
1654 (apply 'vc-do-command 1 command file (if cmp options (cdr options))) 1654 (apply 'vc-do-command 1 command file (if cmp (cdr options) options))
1655 status))) 1655 status)))
1656 1656
1657(defun vc-check-headers () 1657(defun vc-check-headers ()