# HG changeset patch # User Dan Nicolaescu # Date 1217404226 0 # Node ID 086f5c9fa0be296086ebe44a61db8049182380af # Parent 138e8a4ee5a6767157b11a8b44fe5cbfa21376c2 (vc-git-status-printer): Synchronize with the default. diff -r 138e8a4ee5a6 -r 086f5c9fa0be lisp/ChangeLog --- a/lisp/ChangeLog Wed Jul 30 07:03:17 2008 +0000 +++ b/lisp/ChangeLog Wed Jul 30 07:50:26 2008 +0000 @@ -1,3 +1,7 @@ +2008-07-30 Dan Nicolaescu + + * vc-git.el (vc-git-status-printer): Synchronize with the default. + 2008-07-30 Michael McNamara * verilog-mode.el (verilog-do-indent): Remove special indent for diff -r 138e8a4ee5a6 -r 086f5c9fa0be lisp/vc-git.el --- a/lisp/vc-git.el Wed Jul 30 07:03:17 2008 +0000 +++ b/lisp/vc-git.el Wed Jul 30 07:50:26 2008 +0000 @@ -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))))