Variable: Man-hyphenated-reference-regexp
Man-hyphenated-reference-regexp is a variable defined in man.el.gz.
Value
"\\([-[:alnum:]_+[@][-[:alnum:]_.:+]*\\)\\((\\([0-9][a-zA-Z0-9+]*\\|[LNln]\\))\\)?"
Documentation
Regular expression describing a reference in the SEE ALSO section.
Source Code
;; Defined in /usr/src/emacs/lisp/man.el.gz
;; This includes the section as an optional part to catch hyphenated
;; references to manpages.
(defvar Man-hyphenated-reference-regexp
(concat "\\(" Man-name-regexp "\\)\\((\\(" Man-section-regexp "\\))\\)?")
"Regular expression describing a reference in the SEE ALSO section.")