From: Dan Nicolaescu Date: Wed, 30 Jul 2008 07:50:26 +0000 (+0000) Subject: (vc-git-status-printer): Synchronize with the default. X-Git-Tag: emacs-pretest-23.0.90~3800 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=631601b5eb7a656490e879f464592d90c58e8e1a;p=emacs.git (vc-git-status-printer): Synchronize with the default. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2f7de0c52f2..8dbf24f1163 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 --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))))