]> git.eshelyaron.com Git - emacs.git/commitdiff
* vc/vc-bzr.el (vc-bzr-diff): Don't pass --diff-options unless
authorDeniz Dogan <deniz.a.m.dogan@gmail.com>
Thu, 27 Jan 2011 17:51:06 +0000 (18:51 +0100)
committerDeniz Dogan <deniz.a.m.dogan@gmail.com>
Thu, 27 Jan 2011 17:51:06 +0000 (18:51 +0100)
there are some diff switches.

lisp/ChangeLog
lisp/vc/vc-bzr.el

index 3f5bbd33f66067cb5099c68501793e69ab4b608f..bcf3c67a8b2217283b6c8ed1a3b2089a3e2a2d17 100644 (file)
@@ -1,3 +1,8 @@
+2011-01-27  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
+
+       * vc/vc-bzr.el (vc-bzr-diff): Don't pass --diff-options unless
+       there are some diff switches.
+
 2011-01-27  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
index 4c63c6e67768d18e3eed034e9ef2b3d3eebf2af1..9693fa745ce68ab2b38ff5adf6629b0f7d8848a6 100644 (file)
@@ -674,18 +674,22 @@ REV non-nil gets an error."
 
 (defun vc-bzr-diff (files &optional rev1 rev2 buffer)
   "VC bzr backend for diff."
-  ;; `bzr diff' exits with code 1 if diff is non-empty.
-  (apply #'vc-bzr-command "diff" (or buffer "*vc-diff*")
-        (if vc-disable-async-diff 1 'async) files
-         "--diff-options" (mapconcat 'identity
-                                     (vc-switches 'bzr 'diff)
-                                    " ")
-         ;; This `when' is just an optimization because bzr-1.2 is *much*
-         ;; faster when the revision argument is not given.
-         (when (or rev1 rev2)
-           (list "-r" (format "%s..%s"
-                              (or rev1 "revno:-1")
-                              (or rev2 ""))))))
+  (let* ((switches (vc-switches 'bzr 'diff))
+         (args
+          (append
+           ;; Only add --diff-options if there are any diff switches.
+           (unless (zerop (length switches))
+             (list "--diff-options" (mapconcat 'identity switches " ")))
+           ;; This `when' is just an optimization because bzr-1.2 is *much*
+           ;; faster when the revision argument is not given.
+           (when (or rev1 rev2)
+             (list "-r" (format "%s..%s"
+                                (or rev1 "revno:-1")
+                                (or rev2 "")))))))
+    ;; `bzr diff' exits with code 1 if diff is non-empty.
+    (apply #'vc-bzr-command "diff" (or buffer "*vc-diff*")
+           (if vc-disable-async-diff 1 'async) files
+           args)))
 
 
 ;; FIXME: vc-{next,previous}-revision need fixing in vc.el to deal with