Function: Man-goto-see-also-section
Man-goto-see-also-section is an interactive and byte-compiled function
defined in man.el.gz.
Signature
(Man-goto-see-also-section)
Documentation
Move point to the "SEE ALSO" section.
Actually the section moved to is described by Man-see-also-regexp.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/man.el.gz
(defun Man-goto-see-also-section ()
"Move point to the \"SEE ALSO\" section.
Actually the section moved to is described by `Man-see-also-regexp'."
(interactive nil man-common)
(if (not (Man-find-section Man-see-also-regexp))
(error "%s" (concat "No " Man-see-also-regexp
" section found in the current manpage"))))