diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-07-30 07:50:26 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-07-30 07:50:26 +0000 |
commit | 631601b5eb7a656490e879f464592d90c58e8e1a (patch) | |
tree | 13ec4404c42b3d3464d568bc34f9b4eb666b413f /lisp/vc-git.el | |
parent | 4c5e69c61644d3dac7f6328dce320432e296025d (diff) | |
download | emacs-631601b5eb7a656490e879f464592d90c58e8e1a.tar.gz |
(vc-git-status-printer): Synchronize with the default.
Diffstat (limited to 'lisp/vc-git.el')
-rw-r--r-- | lisp/vc-git.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/vc-git.el b/lisp/vc-git.el index 5c0b9129485..79466241691 100644 --- a/lisp/vc-git.el +++ b/lisp/vc-git.el @@ -287,8 +287,12 @@ " " (vc-git-permissions-as-string old-perm new-perm) " " (propertize (vc-git-escape-file-name (vc-dir-fileinfo->name info)) - 'face 'font-lock-function-name-face - 'mouse-face 'highlight) + 'face (if isdir 'font-lock-comment-delimiter-face 'font-lock-function-name-face) + 'help-echo + (if isdir + "Directory\nVC operations can be applied to it\nmouse-3: Pop-up menu" + "File\nmouse-3: Pop-up menu") + 'mouse-face 'highlight) (vc-git-file-type-as-string old-perm new-perm) (vc-git-rename-as-string state extra)))) |