diff options
author | Glenn Morris <rgm@gnu.org> | 2008-11-30 01:45:29 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-11-30 01:45:29 +0000 |
commit | 39ba78efad9df5a46a40f7c28d943f2fe7ab12ae (patch) | |
tree | 02bedfdfff97ee43b7e27100faa2f960735b0c14 /lisp/vc-mtn.el | |
parent | 0334426971911144fbd3b1b4ef750082883ca5dc (diff) | |
download | emacs-39ba78efad9df5a46a40f7c28d943f2fe7ab12ae.tar.gz emacs-39ba78efad9df5a46a40f7c28d943f2fe7ab12ae.tar.bz2 emacs-39ba78efad9df5a46a40f7c28d943f2fe7ab12ae.zip |
(vc-mtn-diff): No need to duplicate vc-switches logic.
Diffstat (limited to 'lisp/vc-mtn.el')
-rw-r--r-- | lisp/vc-mtn.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-mtn.el b/lisp/vc-mtn.el index f5fffb7fc87..e4d7535ff6a 100644 --- a/lisp/vc-mtn.el +++ b/lisp/vc-mtn.el @@ -205,7 +205,7 @@ If you want to force an empty list of arguments, use t." "Get a difference report using monotone between two revisions of FILES." (apply 'vc-mtn-command (or buffer "*vc-diff*") 1 files "diff" (append - (vc-switches (if vc-mtn-diff-switches 'mtn) 'diff) + (vc-switches 'mtn 'diff) (if rev1 (list "-r" rev1)) (if rev2 (list "-r" rev2))))) (defun vc-mtn-annotate-command (file buf &optional rev) |