log-edit-font-lock-gnu-keywords
log-edit-font-lock-gnu-keywords is a variable defined in `
log-edit.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:
(("^[ ]*\\(?:\\* .*\\)?\\(([^\n)]*,\\s-*\\)$"
(1
'(face font-lock-warning-face help-echo "Continue function lists with \")\\n(\".")
t))
("):[ \n]*[[:alpha:]]+\\(ed\\)\\>"
(1
'(face font-lock-warning-face help-echo "Use present tense.")
t))
("): [a-z]"
(0
'(face font-lock-warning-face help-echo "Capitalize.")
t))
("[^[:upper:]]\\(\\. [[:upper:]]\\)"
(1
'(face font-lock-warning-face help-echo "Use two spaces to end a sentence")
t))
("^("
(0
(let
((beg
(max
(point-min)
(-
(match-beginning 0)
2))))
(put-text-property beg
(match-end 0)
'font-lock-multiline t)
(if
(eq
(char-syntax
(char-after beg))
119)
'(face font-lock-warning-face help-echo "Punctuate previous line.")))
t)))