# HG changeset patch # User Dan Nicolaescu # Date 1207354513 0 # Node ID 112903000f93a88e2f48622fffd5ce6f5ae14a6f # Parent 6fb6fa8b520c29334c4ba4e08821e089fd0519e1 * vc-rcs.el (vc-rcs-dir-status): * vc-sccs.el (vc-sccs-dir-status): New function. diff -r 6fb6fa8b520c -r 112903000f93 lisp/ChangeLog --- a/lisp/ChangeLog Fri Apr 04 23:53:00 2008 +0000 +++ b/lisp/ChangeLog Sat Apr 05 00:15:13 2008 +0000 @@ -1,5 +1,8 @@ 2008-04-04 Dan Nicolaescu + * vc-rcs.el (vc-rcs-dir-status): + * vc-sccs.el (vc-sccs-dir-status): New function. + * outline.el (outline-mode-menu-bar-map): * term.el (terminal-signal-menu): Add :help. diff -r 6fb6fa8b520c -r 112903000f93 lisp/vc-rcs.el --- a/lisp/vc-rcs.el Fri Apr 04 23:53:00 2008 +0000 +++ b/lisp/vc-rcs.el Sat Apr 05 00:15:13 2008 +0000 @@ -181,6 +181,18 @@ (vc-rcs-state file)))) (vc-rcs-state file))))) +;; XXX Experimental function for the vc-dired replacement. +(defun vc-rcs-dir-status (dir update-function status-buffer) + ;; XXX: quick hack, there should be a better way to do this, + ;; but it's not worse than vc-dired :-). + (let ((flist (vc-expand-dirs (list dir))) + (result nil)) + (dolist (file flist) + (let ((state (vc-state file)) + (frel (file-relative-name file))) + (push (list frel state) result))) + (funcall update-function result status-buffer))) + (defun vc-rcs-working-revision (file) "RCS-specific version of `vc-working-revision'." (or (and vc-consult-headers diff -r 6fb6fa8b520c -r 112903000f93 lisp/vc-sccs.el --- a/lisp/vc-sccs.el Fri Apr 04 23:53:00 2008 +0000 +++ b/lisp/vc-sccs.el Sat Apr 05 00:15:13 2008 +0000 @@ -144,6 +144,18 @@ (vc-sccs-state file)))) (vc-sccs-state file))) +;; XXX Experimental function for the vc-dired replacement. +(defun vc-sccs-dir-status (dir update-function status-buffer) + ;; XXX: quick hack, there should be a better way to do this, + ;; but it's not worse than vc-dired :-). + (let ((flist (vc-expand-dirs (list dir))) + (result nil)) + (dolist (file flist) + (let ((state (vc-state file)) + (frel (file-relative-name file))) + (push (list frel state) result))) + (funcall update-function result status-buffer))) + (defun vc-sccs-working-revision (file) "SCCS-specific version of `vc-working-revision'." (with-temp-buffer