I can view man
pages using info
in the terminal:
info pthread_create
However, it is not possible with info
in Emacs, even with info-apropos
or info-menu
.
[Edited]
EmacsWiki says that iman
:
Opens either an info format manual with InfoMode or a man page with ManMode.
It links to the author's website: http://homepage1.nifty.com/bmonkey/emacs/elisp/iman.el
EDIT: It seems that fall-backs are not in the concept of
Info-mode
.There follows a work-around applying
advice
. It does not work perfect but around the missing feature ;-).It defines a fall-back for
Info-goto-node
(inInfo-mode
bound to g) and forInfo-menu
(inInfo-mode
bound to m). Furthermore, it adds manual-apropos toinfo-apropos
.Info gives an error that the node is not available. Thereafter, the manual page is shown if there is one.