* lisp/vc/vc-bzr.el (vc-bzr-program): Support breezy.
This commit is contained in:
parent
3d7a832092
commit
8066669826
1 changed files with 6 additions and 2 deletions
|
|
@ -64,9 +64,13 @@
|
|||
:version "22.2"
|
||||
:group 'vc)
|
||||
|
||||
(defcustom vc-bzr-program "bzr"
|
||||
(defcustom vc-bzr-program
|
||||
(or (executable-find "bzr")
|
||||
(executable-find "brz")
|
||||
"bzr")
|
||||
"Name of the bzr command (excluding any arguments)."
|
||||
:type 'string)
|
||||
:type 'string
|
||||
:version "29.1")
|
||||
|
||||
(defcustom vc-bzr-diff-switches nil
|
||||
"String or list of strings specifying switches for bzr diff under VC.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue