diff options
| -rw-r--r-- | lisp/vc.el | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index 61aead6cd63..c252a905a3d 100644 --- a/lisp/vc.el +++ b/lisp/vc.el | |||
| @@ -560,31 +560,33 @@ | |||
| 560 | ;; - vc-update/vc-merge should deal with VC systems that don't | 560 | ;; - vc-update/vc-merge should deal with VC systems that don't |
| 561 | ;; update/merge on a file basis, but on a whole repository basis. | 561 | ;; update/merge on a file basis, but on a whole repository basis. |
| 562 | ;; | 562 | ;; |
| 563 | ;; - deal with push/pull operations. | ||
| 564 | ;; | ||
| 565 | ;; - "snapshots" should be renamed to "branches", and thoroughly reworked. | ||
| 566 | ;; | ||
| 563 | ;; - the backend sometimes knows when a file it opens has been marked | 567 | ;; - the backend sometimes knows when a file it opens has been marked |
| 564 | ;; by the VCS as having a "conflict". Find a way to pass this info - | 568 | ;; by the VCS as having a "conflict". Find a way to pass this info - |
| 565 | ;; to VC so that it can turn on smerge-mode when opening such a | 569 | ;; to VC so that it can turn on smerge-mode when opening such a |
| 566 | ;; file. | 570 | ;; file. |
| 567 | ;; | 571 | ;; |
| 572 | ;; - add a generic mechanism for remembering the current branch names, | ||
| 573 | ;; display the branch name in the mode-line. Replace | ||
| 574 | ;; vc-cvs-sticky-tag with that. | ||
| 575 | ;; | ||
| 568 | ;; - the *VC-log* buffer needs font-locking. | 576 | ;; - the *VC-log* buffer needs font-locking. |
| 569 | ;; | 577 | ;; |
| 570 | ;; - make it easier to write logs, maybe C-x 4 a should add to the log | 578 | ;; - make it easier to write logs. Maybe C-x 4 a should add to the log |
| 571 | ;; buffer if there's one instead of the ChangeLog. | 579 | ;; buffer, if one is present, instead of adding to the ChangeLog. |
| 572 | ;; | 580 | ;; |
| 573 | ;; - make vc-state for all backends return 'unregistered instead of | 581 | ;; - make vc-state for all backends return 'unregistered instead of |
| 574 | ;; nil for unregistered files, then update vc-next-action. | 582 | ;; nil for unregistered files, then update vc-next-action. |
| 575 | ;; | 583 | ;; |
| 576 | ;; - add a generic mechanism for remembering the current branch names, | ||
| 577 | ;; display the branch name in the mode-line. Replace | ||
| 578 | ;; vc-cvs-sticky-tag with that. | ||
| 579 | ;; | ||
| 580 | ;; - vc-register should register a fileset at a time. The backends | 584 | ;; - vc-register should register a fileset at a time. The backends |
| 581 | ;; already support this, only the front-end needs to be change to | 585 | ;; already support this, only the front-end needs to be change to |
| 582 | ;; handle multiple files at a time. | 586 | ;; handle multiple files at a time. |
| 583 | ;; | 587 | ;; |
| 584 | ;; - add a mechanism for ignoring files. | 588 | ;; - add a mechanism for ignoring files. |
| 585 | ;; | 589 | ;; |
| 586 | ;; - deal with push/pull operations. | ||
| 587 | ;; | ||
| 588 | ;; - vc-next-action should do something about 'missing files. Maybe | 590 | ;; - vc-next-action should do something about 'missing files. Maybe |
| 589 | ;; just warn, or offer to checkout. | 591 | ;; just warn, or offer to checkout. |
| 590 | ;; | 592 | ;; |
| @@ -604,8 +606,6 @@ | |||
| 604 | ;; vc-dired/vc-status, it is possible that these commands are called | 606 | ;; vc-dired/vc-status, it is possible that these commands are called |
| 605 | ;; for unregistered/ignored files. | 607 | ;; for unregistered/ignored files. |
| 606 | ;; | 608 | ;; |
| 607 | ;; - "snapshots" should be renamed to "branches", and thoroughly reworked. | ||
| 608 | ;; | ||
| 609 | ;; - do not default to RCS anymore when the current directory is not | 609 | ;; - do not default to RCS anymore when the current directory is not |
| 610 | ;; controlled by any VCS and the user does C-x v v | 610 | ;; controlled by any VCS and the user does C-x v v |
| 611 | ;; | 611 | ;; |