cvs-status-font-lock-keywords
cvs-status-font-lock-keywords is a variable defined in `
cvs-status.el
'.
Its value is shown
below.
- This variable may be risky if used as a file-local variable.
Documentation:
Not documented as a variable.
Value:
(("^File:\\s-+\\(?:no file \\)?\\(.*\\S-\\)\\s-+Status: \\(.+\\)$"
(1 'cvs-filename)
(2 'cvs-need-action))
("^ Existing Tags:$"
("[0-9][.0-9]*\\.[.0-9]*[0-9]"
(save-excursion
(re-search-forward "^\n" nil 'move)
(point))
(progn
(re-search-backward cvs-status-tags-leader-re nil t)
(forward-line 1))
(0 font-lock-comment-face))
("[ ]\\([a-zA-Z][^ \n.]*\\)"
(save-excursion
(re-search-forward "^\n" nil 'move)
(point))
(progn
(re-search-backward cvs-status-tags-leader-re nil t)
(forward-line 1))
(1 font-lock-function-name-face))))