summaryrefslogtreecommitdiff
path: root/lisp/vc.el
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2008-01-24 08:01:54 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2008-01-24 08:01:54 +0000
commit4ac7bfcf33552cede980210847b56707c0c2d2cc (patch)
tree7627778e7ac57887bd433f7871f6e315309994d4 /lisp/vc.el
parent4599d0ec2152952709e6f9302d44f453a4db7391 (diff)
downloademacs-4ac7bfcf33552cede980210847b56707c0c2d2cc.tar.gz
Add a TODO item about missing files.
(vc-exec-after): Add a tooltip to the new mode-line item.
Diffstat (limited to 'lisp/vc.el')
-rw-r--r--lisp/vc.el11
1 files changed, 9 insertions, 2 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index aaac484fb7b..b51a706a2a6 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -559,6 +559,11 @@
;;
;; - vc-status needs a menu, mouse bindings and some color bling.
;;
+;; - vc-status needs to show missing files. It probably needs to have
+;; another state for those files. The user might want to restore
+;; them, or remove them from the VCS. C-x v v might also need
+;; adjustments.
+;;
;; - "snapshots" should be renamed to "branches", and thoroughly reworked.
;;
@@ -1028,8 +1033,10 @@ Else, add CODE to the process' sentinel."
(setq mode-line-process
;; Deliberate overstatement, but power law respected.
;; (The message is ephemeral, so we make it loud.) --ttn
- (propertize " (incomplete / in progress)"
- 'face 'compilation-warning))
+ (propertize " (incomplete/in progress)"
+ 'face 'compilation-warning
+ 'help-echo
+ "A VC command is in progress in this buffer"))
(let ((previous (process-sentinel proc)))
(unless (eq previous 'vc-process-sentinel)
(process-put proc 'vc-previous-sentinel previous))