diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-07-16 04:25:51 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-07-16 04:25:51 +0000 |
commit | dbd3d78766644e9f16d6699e8538c1260e67a428 (patch) | |
tree | cbf06ab6ab0799dc313b09696a0e007c71106268 /lisp/vc-hooks.el | |
parent | 2b1070c8f0cf09e10dbca4e3b298d961ea99c036 (diff) | |
download | emacs-dbd3d78766644e9f16d6699e8538c1260e67a428.tar.gz |
(vc-handled-backends): Move BZR later in the list.
Diffstat (limited to 'lisp/vc-hooks.el')
-rw-r--r-- | lisp/vc-hooks.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index 9fbf4db3160..38ddb35c976 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el @@ -62,8 +62,9 @@ interpreted as hostnames." :type 'regexp :group 'vc) -(defcustom vc-handled-backends '(RCS CVS BZR SVN SCCS HG Arch MCVS) - ;; Arch and MCVS come last because they are per-tree rather than per-dir. +(defcustom vc-handled-backends '(RCS CVS SVN SCCS BZR HG Arch MCVS) + ;; BZR, HG, Arch and MCVS come last because they are per-tree rather + ;; than per-dir. "List of version control backends for which VC will be used. Entries in this list will be tried in order to determine whether a file is under that sort of version control. @@ -71,7 +72,7 @@ Removing an entry from the list prevents VC from being activated when visiting a file managed by that backend. An empty list disables VC altogether." :type '(repeat symbol) - :version "21.1" + :version "23.1" :group 'vc) (defcustom vc-path |