diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-07-07 19:04:01 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-07-07 21:13:17 +0300 |
commit | 153234c47c8b260ed92a56e9f7d6c91eb6785aa8 (patch) | |
tree | f1ec3bfe991257238ad66c62d3dffb7a542ef661 | |
parent | 526b88483183efa68ad692c473c1a434f4d2314d (diff) | |
download | linux-153234c47c8b260ed92a56e9f7d6c91eb6785aa8.tar.xz |
doc-rst: parse-headers: don't do substituition references
Add one extra escape character to avoid those warnings:
Documentation/linux_tv/videodev2.h.rst:6: WARNING: Inline substitution_reference start-string without end-string.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
-rwxr-xr-x | Documentation/sphinx/parse-headers.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/sphinx/parse-headers.pl b/Documentation/sphinx/parse-headers.pl index 16ea28b0d2e1..0a3703bef5eb 100755 --- a/Documentation/sphinx/parse-headers.pl +++ b/Documentation/sphinx/parse-headers.pl @@ -220,7 +220,7 @@ $data =~ s/\n\s+\n/\n\n/g; # # Add escape codes for special characters # -$data =~ s,([\_\`\*\<\>\&\\\\:\/]),\\$1,g; +$data =~ s,([\_\`\*\<\>\&\\\\:\/\|]),\\$1,g; $data =~ s,DEPRECATED,**DEPRECATED**,g; |