summaryrefslogtreecommitdiff
path: root/lisp/vc-bzr.el
diff options
context:
space:
mode:
authorEric S. Raymond <esr@snark.thyrsus.com>2008-05-01 19:28:56 +0000
committerEric S. Raymond <esr@snark.thyrsus.com>2008-05-01 19:28:56 +0000
commit5a9de6d0185ed5302c383769c428d92279717d55 (patch)
tree545b87e95ef942d3ef0facdb068c098c71f7147c /lisp/vc-bzr.el
parent3702367bcef4d8987b1c6aa06ab29ec0390d6887 (diff)
downloademacs-5a9de6d0185ed5302c383769c428d92279717d55.tar.gz
Remove some XXX comments no longer needed.
Diffstat (limited to 'lisp/vc-bzr.el')
-rw-r--r--lisp/vc-bzr.el10
1 files changed, 3 insertions, 7 deletions
diff --git a/lisp/vc-bzr.el b/lisp/vc-bzr.el
index 3d8990a6157..65e8212c34f 100644
--- a/lisp/vc-bzr.el
+++ b/lisp/vc-bzr.el
@@ -593,10 +593,9 @@ Optional argument LOCALP is always ignored."
;; files are up-to-date unless they appear in the `bzr
;; status' output below
(vc-file-setprop file 'vc-state 'up-to-date)
- ;; XXX: is this correct? what happens if one
- ;; mixes different SCMs in the same dir?
- ;; Anyway, we're looking at the output of `bzr ls --versioned',
- ;; so we know these files are registered with Bzr.
+ ;; Anyway, we're looking at the output of `bzr ls
+ ;; --versioned', so we know these files are registered with
+ ;; Bzr.
(vc-file-setprop file 'vc-backend 'Bzr))))
;; `bzr status' reports on added/modified/renamed and unknown/ignored files
(setq at-start t)
@@ -694,11 +693,8 @@ Optional argument LOCALP is always ignored."
(forward-line))
(funcall update-function result)))
-;; XXX Experimental function for the vc-dired replacement.
-;; XXX This probably needs some further refinement and testing.
(defun vc-bzr-dir-status (dir update-function)
"Return a list of conses (file . state) for DIR."
- ;; XXX: Is this the right command to use?
(vc-bzr-command "status" (current-buffer) 'async dir "-v" "-S")
(vc-exec-after
`(vc-bzr-after-dir-status (quote ,update-function))))