aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2007-08-07 04:23:50 +0000
committerStefan Monnier2007-08-07 04:23:50 +0000
commita460c94c17df42cdb7116453f070ed2093b75c4d (patch)
tree09c18a3618e7a5587c582f745552898912b06ba4
parentfcf65e71d5a8664686c4919b9543351501ad488e (diff)
downloademacs-a460c94c17df42cdb7116453f070ed2093b75c4d.tar.gz
emacs-a460c94c17df42cdb7116453f070ed2093b75c4d.zip
Remove comments about vc-bzr.el being a modified unofficial version.
(vc-bzr-command): Remove redundant setting of process-connection-type. (vc-bzr-admin-checkout-format-file): Add autoload. (vc-bzr-root-dir): Remove in favor of vc-bzr-root. (vc-bzr-root): Switch to implementation of vc-bzr-root-dir. (vc-bzr-registered): Compare dirstate format tag with known good value, abort parsing if match fails. Warn user in docstring. (vc-bzr-workfile-version): Case for different Bzr branch formats. See bzrlib/branch.py in Bzr sources. (vc-bzr-diff): First argument FILES may be a string rather than a list. (vc-bzr-shell-command): Remove in favor of vc-bzr-command-discarding-stderr. (vc-bzr-command-discarding-stderr): New function.
-rw-r--r--lisp/ChangeLog21
-rw-r--r--lisp/vc-bzr.elbin23605 -> 23462 bytes
2 files changed, 19 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 323ec1b69c9..ffd803fd1c6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,20 @@
12007-08-07 Riccardo Murri <riccardo.murri@gmail.com>
2
3 * vc-bzr.el: Remove comments about vc-bzr.el being a modified
4 unofficial version.
5 (vc-bzr-command): Remove redundant setting of process-connection-type.
6 (vc-bzr-admin-checkout-format-file): Add autoload.
7 (vc-bzr-root-dir): Remove in favor of vc-bzr-root.
8 (vc-bzr-root): Switch to implementation of vc-bzr-root-dir.
9 (vc-bzr-registered): Compare dirstate format tag with known good
10 value, abort parsing if match fails. Warn user in docstring.
11 (vc-bzr-workfile-version): Case for different Bzr branch formats.
12 See bzrlib/branch.py in Bzr sources.
13 (vc-bzr-diff): First argument FILES may be a string rather than a list.
14 (vc-bzr-shell-command): Remove in favor of
15 vc-bzr-command-discarding-stderr.
16 (vc-bzr-command-discarding-stderr): New function.
17
12007-08-06 Riccardo Murri <riccardo.murri@gmail.com> 182007-08-06 Riccardo Murri <riccardo.murri@gmail.com>
2 19
3 * vc-bzr.el (vc-bzr-registered): Gracefully handle missing "bzr" 20 * vc-bzr.el (vc-bzr-registered): Gracefully handle missing "bzr"
@@ -20,8 +37,8 @@
20 `vc-bzr-admin-revhistory' file, but fallback to spawning "bzr revno" 37 `vc-bzr-admin-revhistory' file, but fallback to spawning "bzr revno"
21 if that file doesn't exist. 38 if that file doesn't exist.
22 (vc-bzr-responsible-p): Use `vc-bzr-root' instead of 39 (vc-bzr-responsible-p): Use `vc-bzr-root' instead of
23 `vc-bzr-root-dir' for speed. 40 `vc-bzr-root-dir' for speed. Add `vc-bzr-admin-dirname'
24 add `vc-bzr-admin-dirname' (not ".bzr"!) to `vc-directory-exclusion-list' 41 (not ".bzr"!) to `vc-directory-exclusion-list'
25 (vc-bzr-shell-command): New function. 42 (vc-bzr-shell-command): New function.
26 43
272007-08-06 Tom Tromey <tromey@redhat.com> 442007-08-06 Tom Tromey <tromey@redhat.com>
diff --git a/lisp/vc-bzr.el b/lisp/vc-bzr.el
index 907bcc5200c..cfb417519d3 100644
--- a/lisp/vc-bzr.el
+++ b/lisp/vc-bzr.el
Binary files differ