mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-03 10:53:23 +00:00
lisp/auth-source.el (authinfo--keywords): Avoid obsolete font-lock face vars
This commit is contained in:
parent
648453c04d
commit
48940a5d48
1 changed files with 10 additions and 10 deletions
|
@ -2395,21 +2395,21 @@ See `auth-source-search' for details on SPEC."
|
|||
:version "28.1")
|
||||
|
||||
(defvar authinfo--keywords
|
||||
'(("^#.*" . font-lock-comment-face)
|
||||
'(("^#.*" (0 'font-lock-comment-face))
|
||||
("^\\(machine\\)[ \t]+\\([^ \t\n]+\\)"
|
||||
(1 font-lock-variable-name-face)
|
||||
(2 font-lock-builtin-face))
|
||||
(1 'font-lock-variable-name-face)
|
||||
(2 'font-lock-builtin-face))
|
||||
("\\(login\\)[ \t]+\\([^ \t\n]+\\)"
|
||||
(1 font-lock-comment-delimiter-face)
|
||||
(2 font-lock-keyword-face))
|
||||
(1 'font-lock-comment-delimiter-face)
|
||||
(2 'font-lock-keyword-face))
|
||||
("\\(password\\)[ \t]+\\([^ \t\n]+\\)"
|
||||
(1 font-lock-comment-delimiter-face)
|
||||
(2 font-lock-doc-face))
|
||||
(1 'font-lock-comment-delimiter-face)
|
||||
(2 'font-lock-doc-face))
|
||||
("\\(port\\)[ \t]+\\([^ \t\n]+\\)"
|
||||
(1 font-lock-comment-delimiter-face)
|
||||
(2 font-lock-type-face))
|
||||
(1 'font-lock-comment-delimiter-face)
|
||||
(2 'font-lock-type-face))
|
||||
("\\([^ \t\n]+\\)[, \t]+\\([^ \t\n]+\\)"
|
||||
(1 font-lock-constant-face)
|
||||
(1 'font-lock-constant-face)
|
||||
(2 nil))))
|
||||
|
||||
;;;###autoload
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue