diff options
| author | Richard M. Stallman <rms@gnu.org> | 1994-04-22 04:31:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1994-04-22 04:31:27 +0000 |
| commit | cec574b950bc8c8c8d6002ac15e6048fe70c69c6 (patch) | |
| tree | 48cad500f0f6e81e2c7f8008f867508493316a14 /lisp/vc.el | |
| parent | bdd2009598f11697716b9223046bedea3a448254 (diff) | |
| download | emacs-cec574b950bc8c8c8d6002ac15e6048fe70c69c6.tar.gz | |
(vc-backend-diff): Test of cmp was backwards.
Diffstat (limited to 'lisp/vc.el')
| -rw-r--r-- | lisp/vc.el | 2 |
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." (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 () |
