diff options
| author | Dan Nicolaescu | 2008-05-10 04:39:08 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-05-10 04:39:08 +0000 |
| commit | 8234f5be56ab0ee66e2035cbe9a0e0bbbc8a48ac (patch) | |
| tree | a9ed8074867c684e3e06c5cf09bb456119a3c6fc | |
| parent | 4b1a01b30ec5742b3b3d47797fee36903a3e0ad8 (diff) | |
| download | emacs-8234f5be56ab0ee66e2035cbe9a0e0bbbc8a48ac.tar.gz emacs-8234f5be56ab0ee66e2035cbe9a0e0bbbc8a48ac.zip | |
Update todo.
| -rw-r--r-- | lisp/ChangeLog | 21 | ||||
| -rw-r--r-- | lisp/vc.el | 8 |
2 files changed, 19 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index afe82a0f468..74652cf84d6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2008-05-10 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2008-05-10 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 2 | ||
| 3 | * vc.el: Update todo. | ||
| 4 | |||
| 3 | * vc-sccs.el (vc-sccs-dir-status): | 5 | * vc-sccs.el (vc-sccs-dir-status): |
| 4 | * vc-rcs.el (vc-rcs-dir-status): Avoid using results from multiple | 6 | * vc-rcs.el (vc-rcs-dir-status): Avoid using results from multiple |
| 5 | backends and returning up to date files. | 7 | backends and returning up to date files. |
| @@ -9,15 +11,16 @@ | |||
| 9 | 2008-05-09 Eric S. Raymond <esr@snark.thyrsus.com> | 11 | 2008-05-09 Eric S. Raymond <esr@snark.thyrsus.com> |
| 10 | 12 | ||
| 11 | * vc.el (vc-dir): | 13 | * vc.el (vc-dir): |
| 12 | * vc-hooks.el: Tweak the VC directory bindings. | 14 | * vc-hooks.el: Tweak the VC directory bindings. These are now |
| 13 | These are now documented in the manual. | 15 | documented in the manual. |
| 14 | * vc-dispatcher.el (vc-dir-update, vc-dir-parent-marked-p, | 16 | |
| 15 | vc-dir-children-marked-p): Remove the vc-dir-insert-directories global. | 17 | * vc-dispatcher.el (vc-dir-update, vc-dir-parent-marked-p) |
| 16 | 18 | (vc-dir-children-marked-p): Remove the vc-dir-insert-directories | |
| 17 | * vc-dispatcher.el (vc-dispatcher-selection-set): Allow callers to | 19 | global. |
| 18 | pass in an observer flag that says no buffer sync is required. | 20 | (vc-dispatcher-selection-set): Allow callers to pass in an |
| 19 | * vc.el (vc-deduce-fileset, vc-print-log, vc-version-diff): Use | 21 | observer flag that says no buffer sync is required. |
| 20 | the observer flag. | 22 | * vc.el (vc-deduce-fileset, vc-print-log, vc-version-diff): |
| 23 | Use the observer flag. | ||
| 21 | 24 | ||
| 22 | 2008-05-09 Michael Albinus <michael.albinus@gmx.de> | 25 | 2008-05-09 Michael Albinus <michael.albinus@gmx.de> |
| 23 | 26 | ||
diff --git a/lisp/vc.el b/lisp/vc.el index 1778894e66b..b221baffef4 100644 --- a/lisp/vc.el +++ b/lisp/vc.el | |||
| @@ -593,7 +593,7 @@ | |||
| 593 | ;; provide custom headers, use the `extra' field and deal with all | 593 | ;; provide custom headers, use the `extra' field and deal with all |
| 594 | ;; possible VC states. | 594 | ;; possible VC states. |
| 595 | ;; | 595 | ;; |
| 596 | ;; - add function that calls vc-dir to `find-directory-functions'. | 596 | ;; - add a function that calls vc-dir to `find-directory-functions'. |
| 597 | ;; | 597 | ;; |
| 598 | ;; - vc-diff, vc-annotate, etc. need to deal better with unregistered | 598 | ;; - vc-diff, vc-annotate, etc. need to deal better with unregistered |
| 599 | ;; files. Now that unregistered and ignored files are shown in | 599 | ;; files. Now that unregistered and ignored files are shown in |
| @@ -603,6 +603,9 @@ | |||
| 603 | ;; - do not default to RCS anymore when the current directory is not | 603 | ;; - do not default to RCS anymore when the current directory is not |
| 604 | ;; controlled by any VCS and the user does C-x v v | 604 | ;; controlled by any VCS and the user does C-x v v |
| 605 | ;; | 605 | ;; |
| 606 | ;; - vc-responsible-backend should not return RCS if no backend | ||
| 607 | ;; declares itself responsible. | ||
| 608 | ;; | ||
| 606 | ;; - vc-create-snapshot and vc-retrieve-snapshot should update the | 609 | ;; - vc-create-snapshot and vc-retrieve-snapshot should update the |
| 607 | ;; buffers that might be visiting the affected files. | 610 | ;; buffers that might be visiting the affected files. |
| 608 | ;; | 611 | ;; |
| @@ -623,6 +626,9 @@ | |||
| 623 | ;; - backends that care about vc-stay-local should try to take it into | 626 | ;; - backends that care about vc-stay-local should try to take it into |
| 624 | ;; account for vc-dir. Is this likely to be useful??? | 627 | ;; account for vc-dir. Is this likely to be useful??? |
| 625 | ;; | 628 | ;; |
| 629 | ;; - vc-expand-dirs should take a backend parameter and only look for | ||
| 630 | ;; files managed by that backend. | ||
| 631 | ;; | ||
| 626 | 632 | ||
| 627 | ;;; Code: | 633 | ;;; Code: |
| 628 | 634 | ||