Don't escape leading dots in code blocks in manpage

The code block in git-annex-smudge(1) was misformatted.  Code blocks
start with tabs, so replace "\s" with " ".  Tested to not affect
anything except git-annex-smudge.1.
This commit is contained in:
Jim Paris 2016-08-16 11:51:16 -04:00
parent d64e21169e
commit e2a55fdbae

View file

@ -10,7 +10,7 @@ while (<>) {
s{(\\?)\[\[([^\s\|\]]+)(\|[^\s\]]+)?\]\]}{$1 ? "[[$2]]" : $2}eg;
s/\`([^\`]*)\`/\\fB$1\\fP/g;
s/\`//g;
s/^\s*\./\\&./g;
s/^ *\./\\&./g;
if (/^#\s/) {
s/^#\s/.SH /;
<>; # blank;