Variable: etc-authors--author-re

etc-authors--author-re is a variable defined in etc-authors-mode.el.gz.

Value

"^\\([^\n[:blank:]][^\n:]+?\\):"

Documentation

Regexp matching an author in "etc/AUTHORS".

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/etc-authors-mode.el.gz
(defconst etc-authors--author-re
  (rx bol (group (not (any blank "\n")) (+? (not (any ":" "\n")))) ":")
  "Regexp matching an author in \"etc/AUTHORS\".")