Mercurial > emacs
changeset 93677:112903000f93
* vc-rcs.el (vc-rcs-dir-status):
* vc-sccs.el (vc-sccs-dir-status): New function.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Sat, 05 Apr 2008 00:15:13 +0000 |
parents | 6fb6fa8b520c |
children | a89d44b9b107 |
files | lisp/ChangeLog lisp/vc-rcs.el lisp/vc-sccs.el |
diffstat | 3 files changed, 27 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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 <dann@ics.uci.edu> + * 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.
--- 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
--- 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