diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2019-08-12 19:07:04 +0300 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2019-08-12 23:54:22 +0300 |
commit | 11fec009d97e5bd2329ef7d52d71e9f6763f1048 (patch) | |
tree | 645c88a1957de375936857248ffe06db73f7a7ab /Documentation/sphinx | |
parent | aa48e31b874774bef42fd2b433474202cbe8ac79 (diff) | |
download | linux-11fec009d97e5bd2329ef7d52d71e9f6763f1048.tar.xz |
Documentation: sphinx: Add missing comma to list of strings
In Python, like in C, when a comma is omitted in a list of strings, the
two strings around the missing comma are concatenated.
Cc: stable@vger.kernel.org # v5.2 only
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/sphinx')
-rw-r--r-- | Documentation/sphinx/automarkup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/sphinx/automarkup.py b/Documentation/sphinx/automarkup.py index 77e89c1956d7..a8798369e8f7 100644 --- a/Documentation/sphinx/automarkup.py +++ b/Documentation/sphinx/automarkup.py @@ -25,7 +25,7 @@ RE_function = re.compile(r'([\w_][\w\d_]+\(\))') # to the creation of incorrect and confusing cross references. So # just don't even try with these names. # -Skipfuncs = [ 'open', 'close', 'read', 'write', 'fcntl', 'mmap' +Skipfuncs = [ 'open', 'close', 'read', 'write', 'fcntl', 'mmap', 'select', 'poll', 'fork', 'execve', 'clone', 'ioctl'] # |