diff options
Diffstat (limited to 'Documentation/sphinx/automarkup.py')
-rw-r--r-- | Documentation/sphinx/automarkup.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Documentation/sphinx/automarkup.py b/Documentation/sphinx/automarkup.py index 77e89c1956d7..5b6119ff69f4 100644 --- a/Documentation/sphinx/automarkup.py +++ b/Documentation/sphinx/automarkup.py | |||
@@ -25,8 +25,9 @@ RE_function = re.compile(r'([\w_][\w\d_]+\(\))') | |||
25 | # to the creation of incorrect and confusing cross references. So | 25 | # to the creation of incorrect and confusing cross references. So |
26 | # just don't even try with these names. | 26 | # just don't even try with these names. |
27 | # | 27 | # |
28 | Skipfuncs = [ 'open', 'close', 'read', 'write', 'fcntl', 'mmap' | 28 | Skipfuncs = [ 'open', 'close', 'read', 'write', 'fcntl', 'mmap', |
29 | 'select', 'poll', 'fork', 'execve', 'clone', 'ioctl'] | 29 | 'select', 'poll', 'fork', 'execve', 'clone', 'ioctl', |
30 | 'socket' ] | ||
30 | 31 | ||
31 | # | 32 | # |
32 | # Find all occurrences of function() and try to replace them with | 33 | # Find all occurrences of function() and try to replace them with |