mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 13:27:36 +00:00
Fix setgid fontification in dired on some OS-es
* lisp/dired.el (dired-font-lock-keywords): Apparently some versions of ls use "S" for setgid and other use "s" (bug#8186).
This commit is contained in:
parent
66efb2f3a6
commit
1fc8bf71d9
1 changed files with 1 additions and 1 deletions
|
|
@ -510,7 +510,7 @@ Subexpression 2 must end right before the \\n.")
|
|||
"[-d]..\\(s\\)......") ; suid
|
||||
'(1 'dired-set-id))
|
||||
(list (concat dired-re-maybe-mark dired-re-inode-size
|
||||
"[-d].....\\(S\\)...") ; guid
|
||||
"[-d].....\\([sS]\\)...") ; guid
|
||||
'(1 'dired-set-id))
|
||||
;;
|
||||
;; Subdirectories.
|
||||
|
|
|
|||
Loading…
Reference in a new issue