If I invoke erlang-man-module with the module name "file" then for me it brings up the CosFileTransfer_File(3) manual page.<br>
<br>
In the function erlang-man-module the pattern for matching the relevant man file is constructed like this<br>
<br>
    (pat (concat "\\b" (regexp-quote module) "\\.[^.]$"))<br>
<br>
thiis is faulty, because \b matches the beginning of a word, but the
character '_' is not a word constituent in Erlang mode, so it matches
CosFileTransfer_File too.<br>
<br>
The simplest fix is to change \b to /, so that file name part after the slash is matched:<br>
<br>
    (pat (concat "/" (regexp-quote module) "\\.[^.]$"))<br>
<br>
/Tamas<br>
<br>