diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2022-02-16 16:35:49 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2022-02-16 16:35:49 +0900 |
commit | 0bc4568c4b69ef6535079bedda4a578f4e375aeb (patch) | |
tree | 3b6c2c08031225e8f6cc9032b4ee0ba78512538b /tweak_manpage | |
parent | 7acd85d65ef52b08be9cf5cdf057239aa7a21e85 (diff) | |
download | rsync-0bc4568c4b69ef6535079bedda4a578f4e375aeb.tar.gz rsync-0bc4568c4b69ef6535079bedda4a578f4e375aeb.tar.bz2 rsync-0bc4568c4b69ef6535079bedda4a578f4e375aeb.zip |
Imported Upstream version 3.2.0upstream/3.2.0
Diffstat (limited to 'tweak_manpage')
-rwxr-xr-x | tweak_manpage | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/tweak_manpage b/tweak_manpage deleted file mode 100755 index 4c55c514..00000000 --- a/tweak_manpage +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/perl -i -p - -use strict; -use warnings; - -# We only need to use "\&'" or "\&." at the start of a line. -s/(?<=.)\\\&(['.])/$1/g; - -# Some quotes turn into open/close quotes. -s/'(.)'/\\(oq$1\\(cq/g; -s/(^|[ (])"(?!( |$))/$1\\(lq/gm; -s/(?<! )"([.,:;! )]|$)/\\(rq$1/gm; -s/(\\\(lq[^(]*) "( |$)/$1 \\(rq$2/gm; -s/(^| )" ([^(]*\\\(rq)/$1\\(lq $2/gm; - -# And some don't. -s/^([. ])(.*)/ $1 . realquotes($2) /egm; -s/(\\f(B|\(CW).*?\\fP)/ realquotes($1) /egs; - -s/^\\\&(\\\(oq)/$1/gm; - -sub realquotes -{ - my($txt) = @_; - $txt =~ s/\\\([lr]q/"/g; - $txt =~ s/\\\([oc]q/'/g; - $txt; -} |