diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-10-24 16:39:32 +0200 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2013-08-27 09:06:36 -0700 |
commit | bb7f5e153eed9a276d61321b7f4bd470bb1b9f81 (patch) | |
tree | 32766cc1c4ecf9d80f0ab94416b3477d2470e87d | |
parent | 7364109d255ff5583c9a3930830e28f5b1f0adce (diff) | |
download | ffmpeg-bb7f5e153eed9a276d61321b7f4bd470bb1b9f81.tar.gz |
doc/texi2pod.pl: drop unnecessary rule, which was converting "\," to ","
I cannot find a reason for such a rule, which was resulting in badly
escaped filtergraph snippets.
Fix trac ticket #1610.
(cherry picked from commit ce875a613a16b06b0a561774955111f7a24d12bb)
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
-rwxr-xr-x | doc/texi2pod.pl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl index 5e8814feff..a057651175 100755 --- a/doc/texi2pod.pl +++ b/doc/texi2pod.pl @@ -211,7 +211,6 @@ INF: while(<$inf>) { s/\@TeX\{\}/TeX/g; s/\@pounds\{\}/\#/g; s/\@minus(?:\{\})?/-/g; - s/\\,/,/g; # Now the ones that have to be replaced by special escapes # (which will be turned back into text by unmunge()) |