mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(dired-font-lock-keywords): Avoid fontifying file names
ending in a colon as directory header.
This commit is contained in:
parent
702c4b073d
commit
a5dad58ad4
2 changed files with 13 additions and 3 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2008-12-01 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* dired.el (dired-font-lock-keywords): Avoid fontifying file names
|
||||
ending in a colon as directory header.
|
||||
|
||||
2008-12-01 Kenichi Handa <handa@m17n.org>
|
||||
|
||||
* international/uni-numeric.el: Re-generated.
|
||||
|
|
|
|||
|
|
@ -381,9 +381,6 @@ Subexpression 2 must end right before the \\n or \\r.")
|
|||
|
||||
(defvar dired-font-lock-keywords
|
||||
(list
|
||||
;;
|
||||
;; Directory headers.
|
||||
(list dired-subdir-regexp '(1 dired-header-face))
|
||||
;;
|
||||
;; Dired marks.
|
||||
(list dired-re-mark '(0 dired-mark-face))
|
||||
|
|
@ -451,6 +448,14 @@ Subexpression 2 must end right before the \\n or \\r.")
|
|||
(unless (get-text-property (1- (point)) 'mouse-face)
|
||||
(dired-move-to-filename)))
|
||||
nil (0 dired-ignored-face))))
|
||||
;;
|
||||
;; Explicitly put the default face on file names ending in a colon to
|
||||
;; avoid fontifying them as directory header.
|
||||
(list (concat dired-re-maybe-mark dired-re-inode-size dired-re-perms ".*:$")
|
||||
'(".+" (dired-move-to-filename) nil (0 default)))
|
||||
;;
|
||||
;; Directory headers.
|
||||
(list dired-subdir-regexp '(1 dired-header-face))
|
||||
)
|
||||
"Additional expressions to highlight in Dired mode.")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue