diff options
| author | Stefan Monnier | 2007-08-07 04:23:50 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-08-07 04:23:50 +0000 |
| commit | a460c94c17df42cdb7116453f070ed2093b75c4d (patch) | |
| tree | 09c18a3618e7a5587c582f745552898912b06ba4 | |
| parent | fcf65e71d5a8664686c4919b9543351501ad488e (diff) | |
| download | emacs-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/ChangeLog | 21 | ||||
| -rw-r--r-- | lisp/vc-bzr.el | bin | 23605 -> 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 @@ | |||
| 1 | 2007-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 | |||
| 1 | 2007-08-06 Riccardo Murri <riccardo.murri@gmail.com> | 18 | 2007-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 | ||
| 27 | 2007-08-06 Tom Tromey <tromey@redhat.com> | 44 | 2007-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 | |||