1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-05 19:31:02 -08:00

(vc-backend-diff): Test of cmp was backwards.

This commit is contained in:
Richard M. Stallman 1994-04-22 04:31:27 +00:00
parent bdd2009598
commit cec574b950

View file

@ -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 ()