We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0d44df commit fd6b305Copy full SHA for fd6b305
tools/doc/html.js
@@ -263,7 +263,7 @@ var BSD_ONLY_SYSCALLS = new Set(['lchmod']);
263
// Returns modified text, with such refs replace with HTML links, for example
264
// '<a href="http://man7.org/linux/man-pages/man2/open.2.html">open(2)</a>'
265
function linkManPages(text) {
266
- return text.replace(/ ([a-z]+)\((\d)\)/gm, function(match, name, number) {
+ return text.replace(/ ([a-z.]+)\((\d)\)/gm, function(match, name, number) {
267
// name consists of lowercase letters, number is a single digit
268
var displayAs = name + '(' + number + ')';
269
if (BSD_ONLY_SYSCALLS.has(name)) {
0 commit comments