# HG changeset patch # User Eric S. Raymond # Date 1209670136 0 # Node ID a69dcc2c42ae40b739e088563f10e2b9b086f910 # Parent 2a61c5f918a5f531fa4555334c75a5333b0ec00b Remove some XXX comments no longer needed. diff -r 2a61c5f918a5 -r a69dcc2c42ae lisp/vc-bzr.el --- a/lisp/vc-bzr.el Thu May 01 19:13:16 2008 +0000 +++ b/lisp/vc-bzr.el Thu May 01 19:28:56 2008 +0000 @@ -593,10 +593,9 @@ ;; 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 @@ (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)))) diff -r 2a61c5f918a5 -r a69dcc2c42ae lisp/vc-cvs.el --- a/lisp/vc-cvs.el Thu May 01 19:13:16 2008 +0000 +++ b/lisp/vc-cvs.el Thu May 01 19:28:56 2008 +0000 @@ -857,10 +857,9 @@ (vc-cvs-parse-entry file t)))) (forward-line 1)))) -;; XXX Experimental function for the vc-dired replacement. (defun vc-cvs-after-dir-status (update-function) ;; Heavily inspired by vc-cvs-parse-status. AKA a quick hack. - ;; It needs a lot of testing. + ;; This needs a lot of testing. (let ((status nil) (status-str nil) (file nil) diff -r 2a61c5f918a5 -r a69dcc2c42ae lisp/vc-hg.el --- a/lisp/vc-hg.el Thu May 01 19:13:16 2008 +0000 +++ b/lisp/vc-hg.el Thu May 01 19:28:56 2008 +0000 @@ -457,8 +457,6 @@ ;;; Hg specific functionality. -;; XXX This functionality is experimental/work in progress. It might -;; change without notice. (defvar vc-hg-extra-menu-map (let ((map (make-sparse-keymap))) (define-key map [incoming] '(menu-item "Show incoming" vc-hg-incoming)) diff -r 2a61c5f918a5 -r a69dcc2c42ae lisp/vc-rcs.el --- a/lisp/vc-rcs.el Thu May 01 19:13:16 2008 +0000 +++ b/lisp/vc-rcs.el Thu May 01 19:28:56 2008 +0000 @@ -182,10 +182,9 @@ (vc-rcs-state file)))) (vc-rcs-state file))))) -;; XXX Experimental function for the vc-dired replacement. (defun vc-rcs-dir-status (dir update-function) - ;; XXX: quick hack, there should be a better way to do this, - ;; but it's not worse than vc-dired :-). + ;; Doing individual vc-state calls is painful but tgere + ;; is no better way in RCS-land. (let ((flist (vc-expand-dirs (list dir))) (result nil)) (dolist (file flist) diff -r 2a61c5f918a5 -r a69dcc2c42ae lisp/vc-sccs.el --- a/lisp/vc-sccs.el Thu May 01 19:13:16 2008 +0000 +++ b/lisp/vc-sccs.el Thu May 01 19:28:56 2008 +0000 @@ -156,10 +156,9 @@ (vc-sccs-state file)))) (vc-sccs-state file))) -;; XXX Experimental function for the vc-dired replacement. (defun vc-sccs-dir-status (dir update-function) - ;; XXX: quick hack, there should be a better way to do this, - ;; but it's not worse than vc-dired :-). + ;; Doing loys of undividual VC-state calls is painful, but + ;; there is no better option in SCCS-land. (let ((flist (vc-expand-dirs (list dir))) (result nil)) (dolist (file flist) diff -r 2a61c5f918a5 -r a69dcc2c42ae lisp/vc.el --- a/lisp/vc.el Thu May 01 19:13:16 2008 +0000 +++ b/lisp/vc.el Thu May 01 19:28:56 2008 +0000 @@ -3432,8 +3432,6 @@ (interactive) (vc-dir-mark-unmark 'vc-dir-mark-file)) - -;; XXX: Should this take the region into consideration? (defun vc-dir-mark-all-files (arg) "Mark all files with the same state as the current one. With a prefix argument mark all files.