diff options
| author | Andreas Schwab | 2008-12-27 22:24:31 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2008-12-27 22:24:31 +0000 |
| commit | 7f4a3168c8505cb52ffb63478c5e7eccd474f95e (patch) | |
| tree | 575418916c05557236fbd32f907f4f22b4ae90a4 | |
| parent | d14030f587feb3bf20b143f389e3e491eb301bbb (diff) | |
| download | emacs-7f4a3168c8505cb52ffb63478c5e7eccd474f95e.tar.gz emacs-7f4a3168c8505cb52ffb63478c5e7eccd474f95e.zip | |
(vc-git-dir-printer): Fix filename column.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/vc-git.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 20b3e91c0a1..bccf45bd2f9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-12-27 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * vc-git.el (vc-git-dir-printer): Fix filename column. | ||
| 4 | |||
| 1 | 2008-12-27 Nicholas Maniscalco <nicholas@maniscalco.com> (tiny change) | 5 | 2008-12-27 Nicholas Maniscalco <nicholas@maniscalco.com> (tiny change) |
| 2 | 6 | ||
| 3 | * term.el (term-emulate-terminal): Decode substring just prior to | 7 | * term.el (term-emulate-terminal): Decode substring just prior to |
diff --git a/lisp/vc-git.el b/lisp/vc-git.el index efb59ac2516..c003e08af6c 100644 --- a/lisp/vc-git.el +++ b/lisp/vc-git.el | |||
| @@ -295,7 +295,7 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches." | |||
| 295 | (t 'font-lock-variable-name-face)) | 295 | (t 'font-lock-variable-name-face)) |
| 296 | 'mouse-face 'highlight) | 296 | 'mouse-face 'highlight) |
| 297 | " " (vc-git-permissions-as-string old-perm new-perm) | 297 | " " (vc-git-permissions-as-string old-perm new-perm) |
| 298 | " " | 298 | " " |
| 299 | (propertize (vc-git-escape-file-name (vc-dir-fileinfo->name info)) | 299 | (propertize (vc-git-escape-file-name (vc-dir-fileinfo->name info)) |
| 300 | 'face (if isdir 'font-lock-comment-delimiter-face 'font-lock-function-name-face) | 300 | 'face (if isdir 'font-lock-comment-delimiter-face 'font-lock-function-name-face) |
| 301 | 'help-echo | 301 | 'help-echo |